Example #1
0
 public ExamController(IExamService ExamService, ILookupService lookupService, IClassService ClassService, IAcademicYearService AcademicYearService, IExamSubjectsService IExamSubjectsService, IExamGradesService IExamGradesService, IExamMarksDetailIsService IExamMarksDetailIsService, IExamMarksService IExamMarksService)
     : base()
 {
     this._ExamService = ExamService;
     this._lookupService = lookupService;
     this._ClassService = ClassService;
     this._AcademicYearService = AcademicYearService;
     this._IExamSubjectsService = IExamSubjectsService;
     this._IExamGradesService = IExamGradesService;
     this._IExamMarksDetailIsService = IExamMarksDetailIsService;
     this._IExamMarksService = IExamMarksService;
 }
Example #2
0
 public ReportController(IExamService ExamService, ILookupService lookupService, IExamSubjectsService IExamSubjectsService, IExamMarksDetailIsService IExamMarksDetailIsService, IAcademicYearService AcademicYearService, IClassService ClassService,
     ISectionService SectionService, IExamMarksService IExamMarksService)
     : base()
 {
     this._ExamService = ExamService;
     this._lookupService = lookupService;
     this._IExamSubjectsService = IExamSubjectsService;
     _IExamMarksDetailIsService = IExamMarksDetailIsService;
     this._AcademicYearService = AcademicYearService;
     this._ClassService = ClassService;
     this._SectionService = SectionService;
     _IExamMarksService = IExamMarksService;
 }