comparison Stocks/Stocks.Common/IStocksService.cs @ 0:e5d46bb6cdb0

Initial commit
author adminSH stevenhollidge@hotmail.com
date Mon, 20 Feb 2012 13:52:35 +0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e5d46bb6cdb0
1 using System;
2
3 namespace Stocks.Common
4 {
5 public interface IStocksService
6 {
7 bool IsActive { get; }
8 void Start();
9 void Stop();
10 }
11 }
12