public VendorManagementController(
     IVendorManagementService vendorManagementService,
     IMapper mapper,
     IWorkContext workContext,
     ISelectItemsServices selectitems,
     ICostCenterService costCenterService)
 {
     _vendorManagementService = vendorManagementService;
     _mapper            = mapper;
     _workContext       = workContext;
     _selecteItems      = selectitems;
     _costCenterService = costCenterService;
 }
 public BugetManagementController(
     IWorkContext workContext,
     IFinancialManagementService finManagement,
     IMapper mapper,
     IBugetManagementService bugetManagementService,
     IVendorManagementService vendorManagementService,
     ICostCenterService costCenterService)
 {
     _workContext             = workContext;
     _finManagement           = finManagement;
     _mapper                  = mapper;
     _bugetManagentService    = bugetManagementService;
     _vendorManagementService = vendorManagementService;
     _costCenterService       = costCenterService;
 }
Example #3
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;
 }