Example #1
0
 public StudentsController(IStudentsService studentsService,
                           IStudentAttendanceService studentAttendanceService,
                           IStudentBehaviorService studentBehaviorService,
                           IStudentCourseGradesService studentCourseGradesService,
                           IStudentAssignmentService studentAssignmentService,
                           IStudentSuccessTeamService studentSuccessTeamService,
                           IStudentScheduleService studentScheduleService,
                           IStudentAssessmentService studentAssessmentService,
                           IStudentGoalService studentGoalService,
                           IStudentAllAboutService studentAllAboutService)
 {
     _studentsService            = studentsService;
     _studentAttendanceService   = studentAttendanceService;
     _studentBehaviorService     = studentBehaviorService;
     _studentCourseGradesService = studentCourseGradesService;
     _studentAssignmentService   = studentAssignmentService;
     _studentSuccessTeamService  = studentSuccessTeamService;
     _studentScheduleService     = studentScheduleService;
     _studentAssessmentService   = studentAssessmentService;
     _studentGoalService         = studentGoalService;
     _studentAllAboutService     = studentAllAboutService;
 }
 public StudentsService(IStudentRepository studentRepository,
                        IImageProvider imageUrlProvider,
                        IStudentAttendanceService studentAttendanceService,
                        IStudentBehaviorService studentBehaviorService,
                        IStudentCourseGradesService studentCourseGradesService,
                        IStudentAssignmentService studentAssignmentService,
                        IStudentScheduleService studentScheduleService,
                        IStudentAssessmentService studentAssessmentService,
                        IStudentProgramService studentProgramService,
                        IStudentIndicatorService studentIndicatorService,
                        IStudentSuccessTeamService studentSuccessTeamService,
                        IStudentGraduationReadinessService studentGraduationReadinessService,
                        ICommunicationsService communicationsService,
                        ISpotlightIntegrationsService spotlightIntegrationsService,
                        ICustomParametersProvider customParametersProvider,
                        IStudentGoalService studentGoalService,
                        IStudentAllAboutService studentAllAboutService,
                        IStudentCalendarService studentCalendarService)
 {
     _studentRepository                 = studentRepository;
     _imageUrlProvider                  = imageUrlProvider;
     _studentAttendanceService          = studentAttendanceService;
     _studentBehaviorService            = studentBehaviorService;
     _studentCourseGradesService        = studentCourseGradesService;
     _studentAssignmentService          = studentAssignmentService;
     _studentScheduleService            = studentScheduleService;
     _studentAssessmentService          = studentAssessmentService;
     _studentProgramService             = studentProgramService;
     _studentIndicatorService           = studentIndicatorService;
     _studentSuccessTeamService         = studentSuccessTeamService;
     _studentGraduationReadinessService = studentGraduationReadinessService;
     _communicationsService             = communicationsService;
     _spotlightIntegrationsService      = spotlightIntegrationsService;
     _customParametersProvider          = customParametersProvider;
     _studentGoalService                = studentGoalService;
     _studentAllAboutService            = studentAllAboutService;
     _studentCalendarService            = studentCalendarService;
 }