public StudentInfoController(IStudentInfoService studentInfoService, IStudentClassService studentClassService, IReportCardService reportCardService, IMemoryCache cache) { _studentInfoService = studentInfoService; _studentClassService = studentClassService; _reportCardService = reportCardService; _cache = cache; }
public StudentController(IStudentService studentService, ISchoolService schoolService, ISiteService siteService, IReportCardService reportCardService, ICommonService commonService) { _studentService = studentService; _schoolService = schoolService; _siteService = siteService; _reportCardService = reportCardService; _commonService = commonService; }
public OutcomeMeasurementController(IStudentService studentService, ISchoolService schoolService, ISiteService siteService, IReportCardService reportCardService, IOutcomeMeasurementService outcomeMeasurementService, ICommonService commonService) { _studentService = studentService; _schoolService = schoolService; _siteService = siteService; _reportCardService = reportCardService; _outcomeMeasurementService = outcomeMeasurementService; _commonService = commonService; }
public OperationController(IStudentInfoService studentInfoService, IReportCardService reportCardService) { _studentInfoService = studentInfoService; _reportCardService = reportCardService; }
public ReportCardController(IReportCardService reportCardService, IStudentInfoService studentInfoService) { _reportCardService = reportCardService; _studentInfoService = studentInfoService; }
public ReportCardController(IReportCardService reportCardService) { _reportCardService = reportCardService; }