/// <summary>
 /// Initializes a new instance of the <see cref="EvaluationCompareReportBll" /> class.
 /// </summary>
 /// <param name="io">The IoCConfig class provide installing all components needed to use.</param>
 public EvaluationCompareReportBll(IoCConfig io)
 {
     _evaluationSummaryReport = io.ServiceProvider.GetRequiredService <IEvaluationCompareReportBll>();
 }
Пример #2
0
 /// <summary>
 ///  Initializes a new instance of the <see cref="EvaluationCompareReportController" /> class.
 /// </summary>
 /// <param name="evaluationSummaryReport"></param>
 public EvaluationCompareReportController(IEvaluationCompareReportBll evaluationCompareReport)
 {
     _evaluationCompareReport = evaluationCompareReport;
 }