comparison MetroWpf/FxRates.Common/IPricingService.cs @ 24:a8b50a087544

Stocks and FxRates working, new menu introduced. Working nicely so far
author adminsh@apollo
date Tue, 20 Mar 2012 20:18:35 +0000
parents
children
comparison
equal deleted inserted replaced
23:399398841fd0 24:a8b50a087544
1 using System;
2 using System.Collections.Generic;
3
4 namespace FxRates.Common
5 {
6 public interface IPricingService
7 {
8 bool IsRunning { get; }
9 List<FxRate> GetFullCurrentPrices();
10 void Start();
11 void Stop();
12 event EventHandler<PriceUpdateEventArgs> PriceUpdate;
13 }
14 }