public LimitPaymentCodeController(ApplicationContext context, IHomePagingService pagingService, ILimitService limitService, IPaymentCodeService paymentCodeService, IValidationService validationService)
 {
     this.context            = context;
     this.pagingService      = pagingService;
     this.limitService       = limitService;
     this.paymentCodeService = paymentCodeService;
     this.validationService  = validationService;
 }
 public EmployeeController(ApplicationContext context, IEmployeeService employeeService, IHomePagingService pagingService,
                           IUserService userService)
 {
     this.context         = context;
     this.employeeService = employeeService;
     this.pagingService   = pagingService;
     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;
 }
Exemplo n.º 4
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;
 }
 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;
 }