public EnrolleeController(IOperatorService operatorService, IEnrolleeService enrolleeService, IStatementService statementService, IStudentStatusService studentStatusService)
 {
     _operatorService      = operatorService;
     _enrolleeService      = enrolleeService;
     _statementService     = statementService;
     _studentStatusService = studentStatusService;
 }
 public StatementService(IUnitOfWork unitOfWork, ILogger logger, IMessageSender messageSender, IStudentStatusService studentStatusService, IMarkService markService)
 {
     _unitOfWork           = unitOfWork;
     _logger               = logger;
     _messageSender        = messageSender;
     _studentStatusService = studentStatusService;
     _markService          = markService;
 }
 public FacultyController(IFacultyService facultyService, IMarkService markService, IEnrolleeService enrolleeService, ISchoolSubjectsService schoolSubjectsService, IStudentStatusService studentStatusService, IExaminationSubjectService examinationSubjectService)
 {
     _facultyService            = facultyService;
     _enrolleeService           = enrolleeService;
     _schoolSubjectsService     = schoolSubjectsService;
     _studentStatusService      = studentStatusService;
     _examinationSubjectService = examinationSubjectService;
     _markService = markService;
 }
Example #4
0
 public EnrolleController(IEnrolleeService enrolleeService, IFacultyService facultyService, IStudentStatusService studentStatusService)
 {
     _enrolleeService      = enrolleeService;
     _facultyService       = facultyService;
     _studentStatusService = studentStatusService;
 }
Example #5
0
 public StatementController(IEnrolleeService enrolleeService, IStatementService statementService, IStudentStatusService studentStatusService)
 {
     _enrolleeService      = enrolleeService;
     _statementService     = statementService;
     _studentStatusService = studentStatusService;
 }