Exemple #1
0
 public CommandHandler(NiisWebContext context, IMapper mapper, ICustomerUpdater customerUpdater, IContractCategoryIdentifier categoryIdentifier)
 {
     _context            = context;
     _mapper             = mapper;
     _customerUpdater    = customerUpdater;
     _categoryIdentifier = categoryIdentifier;
 }
Exemple #2
0
 public SubjectController(
     IExecutor executor,
     IMapper mapper,
     IContractCategoryIdentifier categoryIdentifier,
     ICustomerUpdater customerUpdater)
 {
     Executor            = executor;
     Mapper              = mapper;
     _categoryIdentifier = categoryIdentifier;
     _customerUpdater    = customerUpdater;
 }