public PreferredItemsController(
     IWorkContext workContext,
     ISelectItemsServices selectItemsServices)
 {
     _workContext         = workContext;
     _selectItemsServices = selectItemsServices;
 }
 public RFQController(
     IWorkContext workContext,
     IRfqService rfqService,
     IMapper mapper,
     ISelectItemsServices selectItemsServices)
 {
     _workContext         = workContext;
     _rfqService          = rfqService;
     _mapper              = mapper;
     _selectItemsServices = selectItemsServices;
 }
 public VendorManagementController(
     IVendorManagementService vendorManagementService,
     IMapper mapper,
     IWorkContext workContext,
     ISelectItemsServices selectitems,
     ICostCenterService costCenterService)
 {
     _vendorManagementService = vendorManagementService;
     _mapper            = mapper;
     _workContext       = workContext;
     _selecteItems      = selectitems;
     _costCenterService = costCenterService;
 }
Exemple #4
0
 public VendorManagementController(
     IWorkContext workContext,
     ISelectItemsServices selectItemsServices,
     ICostCenterService costCenterService,
     IVendorManagementService vendorManagementService,
     IRfqService rfqService,
     IMapper mapper)
 {
     _workContext             = workContext;
     _selectItemsServices     = selectItemsServices;
     _costCenterService       = costCenterService;
     _vendorManagementService = vendorManagementService;
     _rfqService = rfqService;
     _mapper     = mapper;
 }
Exemple #5
0
 public RfqService(
     IRepository <Rfprfq> rfpRepository,
     IRepository <Rfpitem> rfpItemRepository,
     IRepository <Rfpvendor> rfpVendorRepository,
     IMapper mapper,
     PAS2Context dbContext,
     IWorkContext workContext,
     ISelectItemsServices selectItemsServices)
 {
     _rfpRepository       = rfpRepository;
     _rfpItemRepository   = rfpItemRepository;
     _rfpVendorRepository = rfpVendorRepository;
     _mapper              = mapper;
     _dbContext           = dbContext;
     _workContext         = workContext;
     _selectItemsServices = selectItemsServices;
 }
Exemple #6
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 #7
0
 public TransactionReportsController(
     ITransactionReports transactionReports,
     IWorkContext workContext,
     PAS2Context dbContext,
     IMapper mapper,
     IFinancialDataService financialDataService,
     ISelectItemsServices selectItemsServices,
     ICostCenterService costCenterService)
 {
     _transactionReports   = transactionReports;
     _workContext          = workContext;
     _dbContext            = dbContext;
     _mapper               = mapper;
     _financialDataService = financialDataService;
     _selectItemsServices  = selectItemsServices;
     _costCenterService    = costCenterService;
 }
 public SelectItemsController(
     ICostCenterService costCenterService,
     ISelectItemsServices selectItemsServices,
     IProductManagementService productManagementService,
     IWorkContext workContext,
     IFinancialDataService financialDataService,
     IRfqService rfqService,
     IRepository <Orders> orderRepository)
 {
     _costCenterService        = costCenterService;
     _selectItemsServices      = selectItemsServices;
     _productManagementService = productManagementService;
     _workContext          = workContext;
     _financialDataService = financialDataService;
     _rfqService           = rfqService;
     _orderRepository      = orderRepository;
 }
Exemple #9
0
 public InventoryManagementController(
     IInventoryManagementService invManagement,
     IWorkContext workContext,
     ISelectItemsServices selectItemsServices,
     IProductManagementService productManagementService,
     ICostCenterService costCenterService,
     IMapper mapper,
     IRfqService rfqService,
     IFinancialManagementService financialManagementService)
 {
     _invManagement            = invManagement;
     _workContext              = workContext;
     _selectItemService        = selectItemsServices;
     _productManagementService = productManagementService;
     _costCenterService        = costCenterService;
     _mapper     = mapper;
     _rfqService = rfqService;
     _financialManagementService = financialManagementService;
 }