Ejemplo n.º 1
0
 public ProfileController(
     IHostingEnvironment hostingEnvironment,
     ILangService langService,
     IMapper mapper,
     IViewRenderService viewRenderService,
     IUnitOfWorkAsync unitOfWork,
     ISettingService settingService,
     ISysUserService sysUserService,
     IAffiliateService affiliateService,
     ICoinTransactionService coinTransactionService,
     ILotteryHistoryService lotteryHistoryService,
     IDataContextAsync dataContextAsync,
     ITemplateService templateService,
     IAgencyService agencyService)
 {
     this._hostingEnvironment     = hostingEnvironment;
     this._langService            = langService;
     this._mapper                 = mapper;
     this._viewRenderService      = viewRenderService;
     this._settingService         = settingService;
     this._coinTransactionService = coinTransactionService;
     this._sysUserService         = sysUserService;
     this._affiliateService       = affiliateService;
     this._unitOfWork             = unitOfWork;
     this._templateService        = templateService;
     this._dataContextAsync       = dataContextAsync;
     this._lotteryHistoryService  = lotteryHistoryService;
     this._agencyService          = agencyService;
 }
Ejemplo n.º 2
0
 public LotteryController(
     ILangService langService,
     IMapper mapper,
     IViewRenderService viewRenderService,
     IUnitOfWorkAsync unitOfWork,
     ISettingService settingService,
     ITemplateService templateService,
     ISysUserService sysUserService,
     ILotteryService lotteryService,
     INewsService newsService,
     ILotteryPrizeService lotteryPrizeService,
     ILotteryHistoryService lotteryHistoryService)
 {
     this._langService           = langService;
     this._mapper                = mapper;
     this._viewRenderService     = viewRenderService;
     this._settingService        = settingService;
     this._unitOfWork            = unitOfWork;
     this._templateService       = templateService;
     this._sysUserService        = sysUserService;
     this._newsService           = newsService;
     this._lotteryService        = lotteryService;
     this._lotteryPrizeService   = lotteryPrizeService;
     this._lotteryHistoryService = lotteryHistoryService;
 }
Ejemplo n.º 3
0
 public HomeController(
     ILangService langService,
     ILangDetailService langDetailService,
     IMapper mapper,
     IViewRenderService viewRenderService,
     IUnitOfWorkAsync unitOfWork,
     ISettingService settingService,
     ILotteryService lotteryService,
     IDataContextAsync context,
     IFAQService faqService,
     ITemplateService templateService,
     IPricePredictionService pricePredictionService,
     ILotteryHistoryService lotteryHistoryService,
     ISliderService sliderService,
     INewsService newsService)
 {
     this._langService            = langService;
     this._langDetailService      = langDetailService;
     this._mapper                 = mapper;
     this._viewRenderService      = viewRenderService;
     this._settingService         = settingService;
     this._unitOfWork             = unitOfWork;
     this._faqService             = faqService;
     this._lotteryService         = lotteryService;
     this._templateService        = templateService;
     this._context                = context;
     this._newsService            = newsService;
     this._pricePredictionService = pricePredictionService;
     this._lotteryHistoryService  = lotteryHistoryService;
     this._sliderService          = sliderService;
 }
Ejemplo n.º 4
0
 public LotteryResultViewComponent(IMapper mapper,
                                   ISettingService settingService,
                                   ISysUserService sysUserService,
                                   ILotteryHistoryService lotteryHistoryService,
                                   ILotteryService lotteryService)
 {
     this._mapper                = mapper;
     this._settingService        = settingService;
     this._sysUserService        = sysUserService;
     this._lotteryHistoryService = lotteryHistoryService;
     this._lotteryService        = lotteryService;
 }
Ejemplo n.º 5
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;
 }
Ejemplo n.º 6
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;
 }
Ejemplo n.º 7
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;
 }