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