public FinancialManagementController( IWorkContext workContext, IFinancialManagementService financialManagementService) { _financialManagementService = financialManagementService; _workContext = workContext; }
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; }
public WorkOrdersController( IWorkOrderService workorderService, IMapper mapper, IWorkContext workContext, IRepository <Logon> logonRepository, IRepository <ServiceContracts> serviceContractRepository, IFinancialManagementService financialManagementService, ICostCenterService costCenterService) { _workorderService = workorderService; _mapper = mapper; _workContext = workContext; _logonRepository = logonRepository; _serviceContractRepository = serviceContractRepository; _financialManagementService = financialManagementService; _costCenterService = costCenterService; }
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; }