Пример #1
0
 public ReceivedController(UserManager <IdentityUser> userManager,
                           CustomerService customerService,
                           ReceivedService receivedService,
                           RazorPagesReportingEngine reportingEngine,
                           ILogger <ReceivedController> logger)
 {
     this.logger          = logger;
     this.reportingEngine = reportingEngine;
     this.receivedService = receivedService;
     this.userManager     = userManager;
     this.customerService = customerService;
     //this.transactionService = transactionService;
 }
Пример #2
0
 public AccountsController(AccountsService customerServices,
                           MetaDataService metaDataService,
                           CustomerService customerService,
                           PaymentsService paymentsService,
                           UserManager <IdentityUser> userManager,
                           RazorPagesReportingEngine reportingEngine)
 {
     this.accountsService = customerServices;
     this.userManager     = userManager;
     this.metaDataService = metaDataService;
     this.reportingEngine = reportingEngine;
     this.customerService = customerService;
     this.paymentsService = paymentsService;
 }