Exemple #1
0
 public ProcessOrdersController(
     IWorkContext workContext,
     IProcessOrderService processOrderService,
     ITransactionReports transactionReports,
     IMapper mapper,
     IRfqService rfqService,
     ISelectItemsServices selectItemsServices,
     ICostCenterService costCenterService)
 {
     _workContext         = workContext;
     _processOrderService = processOrderService;
     _transactionReports  = transactionReports;
     _mapper              = mapper;
     _rfqService          = rfqService;
     _selectItemsServices = selectItemsServices;
     _costCenterService   = costCenterService;
 }
Exemple #2
0
 public CodingtestController(IProcessOrderService processOrderService)
 {
     _processOrderService = processOrderService;
 }