annotate MetroWpf/Stocks.Common/IConfigurationService.cs @ 58:241e2f22ed3c

Latest version
author Steven Hollidge <stevenhollidge@hotmail.com>
date Sat, 21 Apr 2012 15:06:48 +0100
parents 6109bc268b90
children
rev   line source
20
adminsh@apollo
parents:
diff changeset
1 using System;
adminsh@apollo
parents:
diff changeset
2 using System.Collections.Generic;
adminsh@apollo
parents:
diff changeset
3 using Stocks.Common.Models;
adminsh@apollo
parents:
diff changeset
4
adminsh@apollo
parents:
diff changeset
5 namespace Stocks.Common
adminsh@apollo
parents:
diff changeset
6 {
adminsh@apollo
parents:
diff changeset
7 public interface IConfigurationService
adminsh@apollo
parents:
diff changeset
8 {
adminsh@apollo
parents:
diff changeset
9 List<Company> GetCompanies();
adminsh@apollo
parents:
diff changeset
10 string GetServiceUrl(string symbolCsv);
adminsh@apollo
parents:
diff changeset
11 string GetServiceUrl(string[] symbols);
adminsh@apollo
parents:
diff changeset
12 }
adminsh@apollo
parents:
diff changeset
13 }