コード例 #1
0
ファイル: TradersManager.cs プロジェクト: llenroc/CryBot
 public TradersManager(ICryptoApi cryptoApi, IClusterClient clusterClient, IHubNotifier hubNotifier, IPushManager pushManager)
 {
     _cryptoApi     = cryptoApi;
     _clusterClient = clusterClient;
     _hubNotifier   = hubNotifier;
     _pushManager   = pushManager;
 }
コード例 #2
0
ファイル: CoinTrader.cs プロジェクト: llenroc/CryBot
 public CoinTrader(IClusterClient orleansClient, IHubNotifier hubNotifier, IPushManager pushManager, ICryptoBroker cryptoBroker)
 {
     _orleansClient        = orleansClient;
     _hubNotifier          = hubNotifier;
     _pushManager          = pushManager;
     _cryptoBroker         = cryptoBroker;
     _taskCompletionSource = new TaskCompletionSource <Budget>();
 }
コード例 #3
0
 public ParticipationController(IParticipationService participationService, IHubNotifier hubNotifier)
 {
     _participationService = participationService;
     _hubNotifier          = hubNotifier;
 }
コード例 #4
0
 public NewQuoteReceivedProcessor(ICommandRA <RateFeed> commandRA, IHubNotifier <RateFeed> notifyRateFeedClient)
 {
     this.commandRA            = commandRA;
     this.notifyRateFeedClient = notifyRateFeedClient;
 }