annotate Stocks/Stocks.Common/IConfigurationService.cs @ 104:4cfdecdb1d12
Silverlight Glimpse now lives on codeplex,
StockDisplay lives on Google code
author |
stevenhollidge <stevenhollidge@hotmail.com> |
date |
Sun, 06 May 2012 12:16:38 +0100 |
parents |
e5d46bb6cdb0 |
children |
|
rev |
line source |
0
|
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 }
|