public BitsoNotifier(ITelegramReporter _tr, IAPIWebSocket _APIWs)
        {
            tr    = _tr;
            APIWs = _APIWs;

            coinsData = new Dictionary <string, CoinDataModel>();
        }
Пример #2
0
        public Application(IBitsoService _bitsoService, IAPIPrivate _bitsoPrivate, IBitsoNotifier _bitsoNotifier, IAPIWebSocket _bitsoWebSocket, IPrivateTelegramReporter _telegramPrivateService)
        {
            bitsoService = _bitsoService;
            bitsoPrivate = _bitsoPrivate;

            bitsoNotifier  = _bitsoNotifier;
            bitsoWebSocket = _bitsoWebSocket;
            tps            = _telegramPrivateService;
        }