public PricePredictionController(
     ILangService langService,
     IMapper mapper,
     IViewRenderService viewRenderService,
     IUnitOfWorkAsync unitOfWork,
     ISettingService settingService,
     ITemplateService templateService,
     ISysUserService sysUserService,
     IPricePredictionService pricePredictionService,
     IPricePredictionHistoryService pricePredictionHistoryService,
     IQuartzSchedulerService quartzSchedulerService,
     IBTCPriceService btcPriceService,
     IHubContext <UserPredictionProgressHub> progressHubContext)
 {
     this._langService                   = langService;
     this._mapper                        = mapper;
     this._viewRenderService             = viewRenderService;
     this._settingService                = settingService;
     this._unitOfWork                    = unitOfWork;
     this._templateService               = templateService;
     this._sysUserService                = sysUserService;
     this._pricePredictionService        = pricePredictionService;
     this._pricePredictionHistoryService = pricePredictionHistoryService;
     this._quartzSchedulerService        = quartzSchedulerService;
     this._btcPriceService               = btcPriceService;
     this._progressHubContext            = progressHubContext;
 }
 public PricePredictionViewComponent(ISysUserService sysUserService,
                                     IBTCPriceService btcPriceService,
                                     IPricePredictionService pricePredictionService,
                                     IPricePredictionHistoryService pricePredictionHistoryService)
 {
     this._sysUserService  = sysUserService;
     this._btcPriceService = btcPriceService;
     this._pricePredictionHistoryService = pricePredictionHistoryService;
     this._pricePredictionService        = pricePredictionService;
 }
示例#3
0
 public HistoryController(
     ILotteryHistoryService lotteryHistoryService,
     ISysUserService sysUserService,
     ISettingService settingService,
     ICoinTransactionService coinTransactionService,
     IDataContextAsync dataContextAsync,
     IPricePredictionHistoryService pricePredictionHistoryService)
 {
     this._lotteryHistoryService         = lotteryHistoryService;
     this._sysUserService                = sysUserService;
     this._pricePredictionHistoryService = pricePredictionHistoryService;
     this._settingService                = settingService;
     this._dataContextAsync              = dataContextAsync;
     this._coinTransactionService        = coinTransactionService;
 }
示例#4
0
 public ViewComponentController(
     IMapper mapper,
     IUnitOfWorkAsync unitOfWork,
     IAnalyticService analyticService,
     ILotteryHistoryService lotteryHistoryService,
     IPricePredictionHistoryService pricePredictionHistoryService,
     ISysUserService sysUserService)
 {
     this._mapper                        = mapper;
     this._sysUserService                = sysUserService;
     this._lotteryHistoryService         = lotteryHistoryService;
     this._pricePredictionHistoryService = pricePredictionHistoryService;
     this._analyticService               = analyticService;
     this._unitOfWork                    = unitOfWork;
 }
示例#5
0
 public DashboardController(
     ILangService langService,
     IMapper mapper,
     IViewRenderService viewRenderService,
     IUnitOfWorkAsync unitOfWork,
     ISettingService settingService,
     ITemplateService templateService,
     ISysUserService sysUserService,
     ILotteryHistoryService lotteryHistoryService,
     IPricePredictionHistoryService pricePredictionHistoryService)
 {
     this._langService                   = langService;
     this._mapper                        = mapper;
     this._viewRenderService             = viewRenderService;
     this._settingService                = settingService;
     this._unitOfWork                    = unitOfWork;
     this._templateService               = templateService;
     this._sysUserService                = sysUserService;
     this._lotteryHistoryService         = lotteryHistoryService;
     this._pricePredictionHistoryService = pricePredictionHistoryService;
 }