Mercurial > silverbladetech
comparison Stocks/Stocks.Common/IConfigurationService.cs @ 0:e5d46bb6cdb0
Initial commit
author | adminSH stevenhollidge@hotmail.com |
---|---|
date | Mon, 20 Feb 2012 13:52:35 +0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e5d46bb6cdb0 |
---|---|
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 } |