view Stocks/Stocks.Common/IConfigurationService.cs @ 12:6a0449185449

SCC changed from TFS to HG
author stevenh7776 stevenhollidge@hotmail.com
date Tue, 21 Feb 2012 17:47:35 +0700
parents e5d46bb6cdb0
children
line wrap: on
line source

using System;
using System.Collections.Generic;
using Stocks.Common.Models;

namespace Stocks.Common
{
  public interface IConfigurationService
  {
    List<Company> GetCompanies();
    string GetServiceUrl(string symbolCsv);
    string GetServiceUrl(string[] symbols);
  }
}