示例#1
0
 /// <summary>
 ///  Initializes a new instance of the <see cref="CacheController" /> class.
 /// </summary>
 /// <param name="evaluationJob"></param>
 public EvaluationJobController(IEvaluationJobBll evaluationJob)
 {
     _evaluationJob = evaluationJob;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="EvaluationJobBllTest" /> class.
 /// </summary>
 /// <param name="io">The IoCConfig class provide installing all components needed to use.</param>
 public EvaluationJobBllTest(IoCConfig io)
 {
     _evaluationJobBll = io.ServiceProvider.GetRequiredService <IEvaluationJobBll>();
 }