Пример #1
0
 public CommandHandler(NiisWebContext context, IMapper mapper, ICustomerUpdater customerUpdater, IContractCategoryIdentifier categoryIdentifier)
 {
     _context            = context;
     _mapper             = mapper;
     _customerUpdater    = customerUpdater;
     _categoryIdentifier = categoryIdentifier;
 }
Пример #2
0
 public CommandHandler(NiisWebContext context, IMapper mapper, ICustomerUpdater customerUpdater,
                       ILogoUpdater logoUpdater)
 {
     _context         = context;
     _mapper          = mapper;
     _customerUpdater = customerUpdater;
     _logoUpdater     = logoUpdater;
 }
Пример #3
0
 public CustomerController(
     ICustomerReader customerReader,
     ICreatorCustomer creatorCustomer,
     ICustomerUpdater customerUpdater,
     ILogger <CustomerController> logger)
 {
     this.customerReader  = customerReader;
     this.creatorCustomer = creatorCustomer;
     this.customerUpdater = customerUpdater;
     this.logger          = logger;
 }
Пример #4
0
 public SubjectController(
     IExecutor executor,
     IMapper mapper,
     IContractCategoryIdentifier categoryIdentifier,
     ICustomerUpdater customerUpdater)
 {
     Executor            = executor;
     Mapper              = mapper;
     _categoryIdentifier = categoryIdentifier;
     _customerUpdater    = customerUpdater;
 }
Пример #5
0
 public CommandHandler(
     IMapper mapper,
     NiisWebContext context,
     ICustomerUpdater customerUpdater,
     INumberGenerator numberGenerator,
     IWorkflowApplier <Domain.Entities.Request.Request> workflowApplier)
 {
     _mapper          = mapper;
     _context         = context;
     _customerUpdater = customerUpdater;
     _numberGenerator = numberGenerator;
     _workflowApplier = workflowApplier;
 }
Пример #6
0
 public CustomerController(IMapper mapper, ICustomerUpdater customerUpdater, IExecutor executor)
 {
     _mapper          = mapper;
     _customerUpdater = customerUpdater;
     _executor        = executor;
 }
Пример #7
0
 public QueryHandler(IMapper mapper, NiisWebContext context, ICustomerUpdater customerUpdater)
 {
     _mapper          = mapper;
     _context         = context;
     _customerUpdater = customerUpdater;
 }