示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EvaluationTemplateBll" /> class.
 /// </summary>
 /// <param name="unitOfWork">The utilities unit of work.</param>
 /// <param name="mapper">The auto mapper.</param>
 /// <param name="token">The ClaimsIdentity in token management.</param>
 /// <param name="kpiGroup">The criteria manager provides criteria functionality.</param>
 public EvaluationTemplateBll(IUnitOfWork unitOfWork, IMapper mapper, IManageToken token,
                              ICriteriaBll criteria, ILevelPointBll levelPoint, IGradeBll grade)
 {
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
     _token      = token;
     _criteria   = criteria;
     _levelPoint = levelPoint;
     _grade      = grade;
 }
示例#2
0
 /// <summary>
 ///  Initializes a new instance of the <see cref="LevelPointController" /> class.
 /// </summary>
 /// <param name="grade"></param>
 public LevelPointController(ILevelPointBll levelPoint)
 {
     _levelPoint = levelPoint;
 }