/// <summary> /// Initializes a new instance of the <see cref="InvestigateEvaluationReportBllTest" /> class. /// </summary> /// <param name="io">The IoCConfig class provide installing all components needed to use.</param> public VendorEvaluationReportBllTest(IoCConfig io) { _vendorEvaluationReport = io.ServiceProvider.GetRequiredService <IVendorEvaluationReportBll>(); }
/// <summary> /// Initializes a new instance of the <see cref="VendorEvaluationReportController" /> class. /// </summary> /// <param name="vendorEvaluationReport"></param> public VendorEvaluationReportController(IVendorEvaluationReportBll vendorEvaluationReport) { _vendorEvaluationReport = vendorEvaluationReport; }