예제 #1
0
 public CustomerImportFileService(ICustomerImportRepository customerImportRepository, IIORepository ioRepository, ICustomerImportFileInfraService customerImportFileInfraService, IRequisitionRepository requisitionRepository, IAccountRepository accountRepository)
 {
     this.customerImportRepository       = customerImportRepository;
     this.ioRepository                   = ioRepository;
     this.customerImportFileInfraService = customerImportFileInfraService;
     this.requisitionRepository          = requisitionRepository;
     this.accountRepository              = accountRepository;
 }
예제 #2
0
 public CustomerImportService(ICustomerImportRepository customerImportRepository, IPasswordPolicy passwordPolicy, IIORepository ioRepository, ICustomerImportFileInfraService customerImportInfraService, IRequisitionRepository requisitionRepository)
 {
     this.customerImportRepository   = customerImportRepository;
     this.passwordPolicy             = passwordPolicy;
     this.ioRepository               = ioRepository;
     this.customerImportInfraService = customerImportInfraService;
     this.requisitionRepository      = requisitionRepository;
 }
예제 #3
0
 public CustomerImportApplication(
     IComponentContext context,
     ICustomerImportRepository customerImportRepository,
     ICustomerImportService customerImportService,
     IResetPasswordTokenRepository resetPasswordTokenRepository,
     IApplicationStoreRepository applicationStoreRepository,
     IPasswordLogRepository passwordLogRepository,
     IPasswordPolicy passwordPolicy,
     IAccountService accountService,
     IRoleRepository roleRepository)
     : base(context)
 {
     this.customerImportRepository     = customerImportRepository;
     this.customerImportService        = customerImportService;
     this.resetPasswordTokenRepository = resetPasswordTokenRepository;
     this.applicationStoreRepository   = applicationStoreRepository;
     this.passwordLogRepository        = passwordLogRepository;
     this.passwordPolicy = passwordPolicy;
     this.accountService = accountService;
     this.roleRepository = roleRepository;
 }