public ClassController(IClassService classService, IStudentService studentService, IExistHelper exist)
 {
     _classService   = classService;
     _studentService = studentService;
     this.resp       = new ResponseHelper();
     this.exist      = exist;
 }
 public TeachingAssignmentController(ITeachingAssignmentService teachingAssignmentService, IExistHelper exist)
 {
     _teachingAssignmentService = teachingAssignmentService;
     _exist = exist;
     _resp  = new ResponseHelper();
 }
Exemplo n.º 3
0
 public ReportController(IResultService resultService, IStudentService studentService, IClassService classService, ISubjectService subjectService, ISemesterService semesterService, IReportService reportService, IExistHelper exist)
 {
     _resultService   = resultService;
     _studentService  = studentService;
     _classService    = classService;
     _subjectService  = subjectService;
     _semesterService = semesterService;
     _reportService   = reportService;
     resp             = new ResponseHelper();
 }
 public SemesterController(ISemesterService semesterService, IExistHelper exist)
 {
     _semesterService = semesterService;
     _exist           = exist;
     resp             = new ResponseHelper();
 }
Exemplo n.º 5
0
 public ResultController(IResultService resultService, IExistHelper exist)
 {
     _resultService = resultService;
     _exist         = exist;
     resp           = new ResponseHelper();
 }