Mercurial > silverbladetech
annotate MetroWpf/Stocks.Common/IConfigurationService.cs @ 20:6109bc268b90
Latest
author | adminsh@apollo |
---|---|
date | Tue, 20 Mar 2012 13:37:46 +0000 |
parents | |
children |
rev | line source |
---|---|
20 | 1 using System; |
2 using System.Collections.Generic; | |
3 using Stocks.Common.Models; | |
4 | |
5 namespace Stocks.Common | |
6 { | |
7 public interface IConfigurationService | |
8 { | |
9 List<Company> GetCompanies(); | |
10 string GetServiceUrl(string symbolCsv); | |
11 string GetServiceUrl(string[] symbols); | |
12 } | |
13 } |