sharp-trading/services/ITradingService.cs

13 lines
203 B
C#
Raw Normal View History

2017-11-23 13:03:36 +01:00
using System;
using System.Runtime.CompilerServices;
namespace sharp.trading.services
{
public interface ITradingService
{
void RunService();
int SchedulingIntervall();
void Shutdown();
}
}