Beispiel #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;
 }
Beispiel #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;
 }
Beispiel #3
0
 public BlogPostApplication(IBlogPostRepository blogPostRepository, IHostingEnvironment environment,
                            IConfiguration configuration, IIORepository iORepository) :
     base(blogPostRepository)
 {
     _blogPostRepository = blogPostRepository;
     _environment        = environment;
     _iORepository       = iORepository;
     _postsPath          = $"{_environment.ContentRootPath}{configuration["PostsPath"]}";
 }
Beispiel #4
0
 public IOService(IIORepository repository)
 {
     _repository = repository;
 }
Beispiel #5
0
 public IOsController(IIORepository iORepository)
 {
     this.iORepository = iORepository;
 }
Beispiel #6
0
 public RequisitionService(IRequisitionRepository pfileImportRepository, IIORepository ioRepository, IStoreRepository pIStoreRepository)
 {
     this.requisitionRepository = pfileImportRepository;
     this.ioRepository          = ioRepository;
     this.storeRepository       = pIStoreRepository;
 }