Ejemplo n.º 1
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;
 }
Ejemplo n.º 2
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;
 }