comparison MetroWpf/Stocks.Common/IStocksService.cs @ 20:6109bc268b90

Latest
author adminsh@apollo
date Tue, 20 Mar 2012 13:37:46 +0000
parents
children
comparison
equal deleted inserted replaced
19:09d18d6e5f40 20:6109bc268b90
1 using System.Collections.Generic;
2 using Stocks.Common.Models;
3
4 namespace Stocks.Common
5 {
6 public interface IStocksService
7 {
8 IList<Price> GetFullCurrentPrices();
9 bool IsRunning { get; }
10 void Start();
11 void Stop();
12 }
13 }
14