コード例 #1
0
ファイル: HomeController.cs プロジェクト: weedkiller/cpl
 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;
 }
コード例 #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;
 }
コード例 #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;
 }
コード例 #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;
 }
コード例 #5
0
 public LayoutController(ILangService langService,
                         ISettingService settingService, ISysUserService sysUserService,
                         IUnitOfWorkAsync unitOfWork)
 {
     this._langService    = langService;
     this._settingService = settingService;
     this._sysUserService = sysUserService;
     this._unitOfWork     = unitOfWork;
 }
コード例 #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;
 }
コード例 #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;
 }
コード例 #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;
 }
コード例 #9
0
ファイル: ExchangeController.cs プロジェクト: weedkiller/cpl
 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;
 }
コード例 #10
0
ファイル: DashboardController.cs プロジェクト: weedkiller/cpl
 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;
 }
コード例 #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;
 }
コード例 #12
0
ファイル: FooterViewComponent.cs プロジェクト: weedkiller/cpl
 public FooterViewComponent(ISysUserService sysUserService, ILangService langService)
 {
     _sysUserService = sysUserService;
     _langService    = langService;
 }
コード例 #13
0
 public HelpController(ILangService langService)
 {
     this.langService = langService;
 }
コード例 #14
0
ファイル: GenerateVariable.cs プロジェクト: PlumpMath/easyvsx
 public static extern void LangService_GetDteProject(ILangService langService, Project dteProject, out IProject project);
コード例 #15
0
        public SecondViewModel()
        {
            ILangService langserv = DependencyService.Get <ILangService>();

            this.LangCode = string.Format("Twój język to: {0}", langserv.GetlanCode());
        }
コード例 #16
0
ファイル: GenerateVariable.cs プロジェクト: PlumpMath/easyvsx
 public static extern void LangService_GetInstance(out ILangService langService);
コード例 #17
0
 public static extern void LangService_GetInstance(out ILangService langService);
コード例 #18
0
 public static extern void LangService_GetDteProject(ILangService langService, Project dteProject, out IProject project);
コード例 #19
0
 public LangController(ILangService service) => this.service = service;
コード例 #20
0
ファイル: HeaderViewComponent.cs プロジェクト: weedkiller/cpl
 public HeaderViewComponent(ISysUserService sysUserService, ILangService langService, INewsService newsService)
 {
     _sysUserService = sysUserService;
     _langService    = langService;
 }