public BackgroundStockQueryService
 (
     IRabbitStockQuery rabbitStockQuery,
     IRabbitStockResponse rabbitStockResponse,
     IStooqClient stooqClient
 )
 {
     this._rabbitStockQuery    = rabbitStockQuery;
     this._rabbitStockResponse = rabbitStockResponse;
     this._stooqClient         = stooqClient;
     _rabbitStockQuery.InitStockQueryEvent();
 }
示例#2
0
 public EventsController(IStooqClient stooq, IJobsityClient jobsity)
 {
     _stooq   = stooq;
     _jobsity = jobsity;
 }