Exemplo n.º 1
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;
 }
Exemplo 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;
 }
Exemplo n.º 3
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;
 }
Exemplo n.º 4
0
 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;
 }
Exemplo n.º 5
0
 public LayoutController(ILangService langService,
                         ISettingService settingService, ISysUserService sysUserService,
                         IUnitOfWorkAsync unitOfWork)
 {
     this._langService    = langService;
     this._settingService = settingService;
     this._sysUserService = sysUserService;
     this._unitOfWork     = unitOfWork;
 }
Exemplo n.º 6
0
 public ContactController(ILangService langService, IContactService contactService, IViewRenderService viewRenderService,
                          ISettingService settingService, ISysUserService sysUserService, ITemplateService templateService,
                          IUnitOfWorkAsync unitOfWork)
 {
     this._langService       = langService;
     this._contactService    = contactService;
     this._settingService    = settingService;
     this._viewRenderService = viewRenderService;
     this._templateService   = templateService;
     this._sysUserService    = sysUserService;
     this._unitOfWork        = unitOfWork;
 }
Exemplo n.º 7
0
 public MobileLocaleController(
     ILangService langService,
     IMobileLangDetailService mobileLangDetailService,
     IMobileLangMsgDetailService mobileLangMsgDetailService,
     IMapper mapper,
     IHostingEnvironment appEnvironment
     )
 {
     this._langService                = langService;
     this._mobileLangDetailService    = mobileLangDetailService;
     this._mobileLangMsgDetailService = mobileLangMsgDetailService;
     this._mapper         = mapper;
     this._appEnvironment = appEnvironment;
 }
Exemplo n.º 8
0
 public AuthenticationController(ILangService langService, IMapper mapper, ISettingService settingService,
                                 IAgencyService agencyService, IAffiliateService affiliateService, IAgencyTokenService agencyTokenService,
                                 ISysUserService sysUserService, IUnitOfWorkAsync unitOfWork, ITemplateService templateService, IViewRenderService viewRenderService)
 {
     _langService        = langService;
     _mapper             = mapper;
     _sysUserService     = sysUserService;
     _agencyService      = agencyService;
     _affiliateService   = affiliateService;
     _agencyTokenService = agencyTokenService;
     _settingService     = settingService;
     _templateService    = templateService;
     _unitOfWork         = unitOfWork;
     _viewRenderService  = viewRenderService;
 }
Exemplo n.º 9
0
 public ExchangeController(
     ILangService langService,
     IMapper mapper,
     IViewRenderService viewRenderService,
     IUnitOfWorkAsync unitOfWork,
     ISettingService settingService,
     ITemplateService templateService,
     ISysUserService sysUserService,
     ICoinTransactionService coinTransactionService)
 {
     this._langService            = langService;
     this._mapper                 = mapper;
     this._viewRenderService      = viewRenderService;
     this._settingService         = settingService;
     this._unitOfWork             = unitOfWork;
     this._templateService        = templateService;
     this._sysUserService         = sysUserService;
     this._coinTransactionService = coinTransactionService;
 }
Exemplo n.º 10
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;
 }
Exemplo n.º 11
0
 public DepositAndWithdrawController(
     ILangService langService,
     IMapper mapper,
     IViewRenderService viewRenderService,
     IUnitOfWorkAsync unitOfWork,
     ISettingService settingService,
     ITemplateService templateService,
     ICoinTransactionService coinTransactionService,
     IETHTransactionService ethTransactionService,
     IBTCTransactionService btcTransactionService,
     ISysUserService sysUserService)
 {
     this._langService            = langService;
     this._mapper                 = mapper;
     this._viewRenderService      = viewRenderService;
     this._settingService         = settingService;
     this._unitOfWork             = unitOfWork;
     this._templateService        = templateService;
     this._coinTransactionService = coinTransactionService;
     this._ethTransactionService  = ethTransactionService;
     this._btcTransactionService  = btcTransactionService;
     this._sysUserService         = sysUserService;
 }
Exemplo n.º 12
0
 public FooterViewComponent(ISysUserService sysUserService, ILangService langService)
 {
     _sysUserService = sysUserService;
     _langService    = langService;
 }
 public HelpController(ILangService langService)
 {
     this.langService = langService;
 }
Exemplo n.º 14
0
 public static extern void LangService_GetDteProject(ILangService langService, Project dteProject, out IProject project);
Exemplo n.º 15
0
        public SecondViewModel()
        {
            ILangService langserv = DependencyService.Get <ILangService>();

            this.LangCode = string.Format("Twój język to: {0}", langserv.GetlanCode());
        }
Exemplo n.º 16
0
 public static extern void LangService_GetInstance(out ILangService langService);
Exemplo n.º 17
0
 public static extern void LangService_GetInstance(out ILangService langService);
Exemplo n.º 18
0
 public static extern void LangService_GetDteProject(ILangService langService, Project dteProject, out IProject project);
Exemplo n.º 19
0
 public LangController(ILangService service) => this.service = service;
Exemplo n.º 20
0
 public HeaderViewComponent(ISysUserService sysUserService, ILangService langService, INewsService newsService)
 {
     _sysUserService = sysUserService;
     _langService    = langService;
 }