annotate Stocks/Stocks.Common/IConfigurationService.cs @ 16:2395908fa45b
Getting there... 1.20am at BKK airport.
MainWindow and Menu now have VMs, Login form is displayed first
author |
stevenh7776 stevenhollidge@hotmail.com |
date |
Wed, 14 Mar 2012 01:23:18 +0700 |
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 }
|