public BackgroundStockQueryService
 (
     IRabbitStockQuery rabbitStockQuery,
     IRabbitStockResponse rabbitStockResponse,
     IStooqClient stooqClient
 )
 {
     this._rabbitStockQuery    = rabbitStockQuery;
     this._rabbitStockResponse = rabbitStockResponse;
     this._stooqClient         = stooqClient;
     _rabbitStockQuery.InitStockQueryEvent();
 }
예제 #2
0
 public ChatHandler(ChatContext db, IRabbitStockQuery rabbitMessageService) : base(db)
 {
     this._rabbitMessageService = rabbitMessageService;
 }