public RFQController(ISearchFacade searchFacade, IProductFacade productFacade, IRfpRequestFacade rfpFacade, IRfpAttachmentFacade rfpAttachmentFacade) { _productFacade = productFacade ?? throw new ArgumentNullException(nameof(productFacade)); _searchFacade = searchFacade ?? throw new ArgumentNullException(nameof(searchFacade)); _rfpFacade = rfpFacade ?? throw new ArgumentNullException(nameof(rfpFacade)); _rfpAttachmentFacade = rfpAttachmentFacade ?? throw new ArgumentNullException(nameof(rfpAttachmentFacade)); }
public RFPController(IRfpRequestFacade rfpRequestFacade, IRfpAttachmentFacade rfpAttachmentFacade, IScoreRuleFacade rfpScoreRuleFacade, IProductTypeFacade prodTypeFacade) { _rfpRequestFacade = rfpRequestFacade ?? throw new ArgumentNullException(nameof(rfpRequestFacade)); _rfpAttachmentFacade = rfpAttachmentFacade ?? throw new ArgumentNullException(nameof(rfpAttachmentFacade)); _rfpScoreRuleFacade = rfpScoreRuleFacade ?? throw new ArgumentNullException(nameof(rfpScoreRuleFacade)); _prodTypeFacade = prodTypeFacade ?? throw new ArgumentNullException(nameof(prodTypeFacade)); }
public AdminDashboardController(IRfpRequestFacade rfpRequestFacade, IRfpAttachmentFacade rfpAttachmentFacade) { _rfpRequestFacade = rfpRequestFacade ?? throw new ArgumentNullException(nameof(rfpRequestFacade)); _rfpAttachmentFacade = rfpAttachmentFacade ?? throw new ArgumentNullException(nameof(rfpAttachmentFacade)); }
public FileController(IRfpAttachmentFacade rfpAttachmentFacade) { _rfpAttachmentFacade = rfpAttachmentFacade ?? throw new ArgumentNullException(nameof(rfpAttachmentFacade)); }