public Application(IBitsoService _bitsoService, IAPIPrivate _bitsoPrivate, IBitsoNotifier _bitsoNotifier, IAPIWebSocket _bitsoWebSocket, IPrivateTelegramReporter _telegramPrivateService)
        {
            bitsoService = _bitsoService;
            bitsoPrivate = _bitsoPrivate;

            bitsoNotifier  = _bitsoNotifier;
            bitsoWebSocket = _bitsoWebSocket;
            tps            = _telegramPrivateService;
        }
Esempio n. 2
0
 public BitsoAPIPrivate(IBitsoService _bistoClient) : base(_bistoClient)
 {
 }
Esempio n. 3
0
 protected BitsoAPI(IBitsoService bistoClient)
 {
     BitsoClient = bistoClient;
 }
Esempio n. 4
0
 public BitsoAPIPublic(IBitsoService _bistoClient) : base(_bistoClient)
 {
 }