Пример #1
0
 public UserInfoController(IHomePagingService pagingService, IUserService userService, ISelectListService selectListService, IAccountService accountService)
 {
     this.pagingService     = pagingService;
     this.userService       = userService;
     this.selectListService = selectListService;
     this.accountService    = accountService;
 }
 public TransferService(ApplicationContext context, ITransactionService transactionService, IUserService userService, ISelectListService selectListService, IAccountService accountService)
 {
     this.context            = context;
     this.transactionService = transactionService;
     this.userService        = userService;
     this.selectListService  = selectListService;
     this.accountService     = accountService;
 }
 public UserService(UserManager <User> userManager, ISelectListService selectListService, ApplicationContext context, SignInManager <User> signInManager)
 {
     this.userManager       = userManager;
     this.selectListService = selectListService;
     this.context           = context;
     rnd = new Random();
     this.signInManager = signInManager;
 }
 public AdminController(IStringLocalizer <AdminController> localizer, ISelectListService selectListService, ApplicationContext context, UserManager <User> userManager, ICurrencyService currencyService, IUserService userService)
 {
     this.localizer         = localizer;
     this.selectListService = selectListService;
     this.context           = context;
     this.userManager       = userManager;
     this.currencyService   = currencyService;
     this.userService       = userService;
 }
 public CompanyController(ApplicationContext context, ISelectListService selectListService, ICompanyService companyService, IHomePagingService pagingService, IEmployeeService employeeService, IAccountService accountService, IValidationService validationService)
 {
     this.context           = context;
     this.selectListService = selectListService;
     this.companyService    = companyService;
     this.pagingService     = pagingService;
     this.employeeService   = employeeService;
     this.accountService    = accountService;
     this.validationService = validationService;
 }
Пример #6
0
 public AccountController(IAccountService accountService, ISelectListService selectListService, ApplicationContext context, UserManager <User> userManager, IHomePagingService pagingService, ICompanyService companyService, IUserService userService, IEmployeeService employeeService)
 {
     this.accountService    = accountService;
     this.selectListService = selectListService;
     this.context           = context;
     this.userManager       = userManager;
     this.pagingService     = pagingService;
     this.companyService    = companyService;
     this.userService       = userService;
     this.employeeService   = employeeService;
 }
Пример #7
0
 public PostCategoryController(ICommonLanguageService commonLanguageService,
                               IPostCategoryService postCategoryService,
                               IPostCategoryDetailService postCategoryDetailService,
                               ISelectListService selectListService
                               )
 {
     _commonLanguageService     = commonLanguageService;
     _postCategoryService       = postCategoryService;
     _postCategoryDetailService = postCategoryDetailService;
     _selectListService         = selectListService;
 }
Пример #8
0
 public TemplateController(ITemplateService templateServiceService, IUserService userService,
                           ISelectListService selectListService, IValidationService validationService,
                           IAccountService accountService, ITransferService transferService, IPaymentScheduleService paymentScheduleService)
 {
     this._templateServiceService = templateServiceService;
     this.userService             = userService;
     this.selectListService       = selectListService;
     this.validationService       = validationService;
     this.accountService          = accountService;
     this.transferService         = transferService;
     this.paymentScheduleService  = paymentScheduleService;
 }
Пример #9
0
 public PostController(IPostService postService,
                       ICommonLanguageService commonLanguageService,
                       IPostCategoryService postCategoryService,
                       IUserService userService,
                       ISelectListService selectListService,
                       IFileStreamService fileStreamService,
                       IOptions <CommonSettings> commonSettingsOptions,
                       IAQFileProvider aQFileProvider
                       )
 {
     _postService           = postService;
     _commonLanguageService = commonLanguageService;
     _postCategoryService   = postCategoryService;
     _userService           = userService;
     _selectListService     = selectListService;
     _fileStreamService     = fileStreamService;
     _commonSettings        = commonSettingsOptions.Value;
     _aQFileProvider        = aQFileProvider;
 }
        public UserController(UserManager <User> userManager, SignInManager <User> signInManager,
                              ApplicationContext context, IUserService userService, ISelectListService selectListService,
                              IAccountService accountService, IEmployeeService employeeService
                              , IExchangeRateService exchangeRateService, ICompanyService companyService, IValidationService validationService,
                              IXmlService xmlService)

        {
            _userManager             = userManager;
            _signInManager           = signInManager;
            this.context             = context;
            this.userService         = userService;
            this.selectListService   = selectListService;
            this.accountService      = accountService;
            generatePasswordService  = new GeneratePasswordService();
            emailService             = new EmailService();
            this.employeeService     = employeeService;
            this.exchangeRateService = exchangeRateService;
            this.companyService      = companyService;
            this.validationService   = validationService;
            this.xmlService          = xmlService;
        }
 public ExchangeRateController(ICurrencyService currencyService,
                               IAccountService accountService, IExchangeRateService exchangeRateService,
                               IStringLocalizer <ExchangeRateController> localizer, IValidationService validationService,
                               UserManager <User> userManager, IUserService userService, ISelectListService selectListService,
                               ITransferService transferService, IHostingEnvironment hostingEnvironment,
                               ApplicationContext context, ICompositeViewEngine _viewEngine, ICreatePDFandLoad createPdFandLoad)
 {
     this.currencyService     = currencyService;
     this.accountService      = accountService;
     this.exchangeRateService = exchangeRateService;
     this.localizer           = localizer;
     this.validationService   = validationService;
     this.userManager         = userManager;
     this.userService         = userService;
     this.selectListService   = selectListService;
     this.transferService     = transferService;
     this.context             = context;
     this._viewEngine         = _viewEngine;
     _hostingEnvironment      = hostingEnvironment;
     this.createPdFandLoad    = createPdFandLoad;
 }
 public TransferController(ISelectListService selectListService, IUserService userService,
                           ITransferService transferService, IAccountService accountService,
                           IStringLocalizer <TransferController> localizer, IHomePagingService pagingService,
                           IEmployeeService employeeService, ICompanyService companyService,
                           IExchangeRateService exchangeRateService, IValidationService validationService,
                           IDocumentFormatService documentFormatService, ITemplateService templateServiceService,
                           ICreatePDFandLoad createPdFandLoad, ICurrencyService currencyService, IHostingEnvironment _hostingEnvironment)
 {
     this.selectListService       = selectListService;
     this.userService             = userService;
     this.transferService         = transferService;
     this.accountService          = accountService;
     this.localizer               = localizer;
     this.pagingService           = pagingService;
     this.employeeService         = employeeService;
     this.companyService          = companyService;
     this.exchangeRateService     = exchangeRateService;
     this.validationService       = validationService;
     this.documentFormatService   = documentFormatService;
     this._templateServiceService = templateServiceService;
     this.createPdFandLoad        = createPdFandLoad;
     this.currencyService         = currencyService;
     this._hostingEnvironment     = _hostingEnvironment;
 }
Пример #13
0
 public AccountService(ApplicationContext context, ISelectListService selectListService, IBankService bankService)
 {
     this.context           = context;
     this.selectListService = selectListService;
     this.bankService       = bankService;
 }
Пример #14
0
 public DocumentController(ISelectListService selectListService, IDocumentService documentService)
 {
     this.selectListService = selectListService;
     this.documentService   = documentService;
 }
Пример #15
0
 public PersonEditModelEnricher(ISelectListService selectListService, IVesselRepository vesselRepository)
 {
     _selectListService = selectListService;
 }
 public JobDefinitionController(ISelectListService selectList, IJobDefinitionService jobDefinitionService)
 {
     _selectList = selectList;
     _jobDefinitionService = jobDefinitionService;
 }
Пример #17
0
 public PersonEditModelEnricher(ISelectListService selectListService)
 {
     _selectListService = selectListService;
 }
 public ScheduleController(IScheduleService scheduleService, ISelectListService selectList)
 {
     _scheduleService = scheduleService;
     _selectList      = selectList;
 }