コード例 #1
0
 public ParentsService(IParentRepository parentRepository, IStudentAttendanceService studentAttendanceService, IStudentBehaviorService studentBehaviorService, IStudentCourseGradesService studentCourseGradesService, IImageProvider imageProvider, IStudentAssignmentService studentAssignmentService, ICustomParametersProvider customParametersProvider, ICommunicationsService communicationsService, IMessagingProvider messagingProvider, ISpotlightIntegrationsService spotlightIntegrationsService, IAlertService alertService, IStudentsService studentsService)
 {
     _parentRepository           = parentRepository;
     _studentAttendanceService   = studentAttendanceService;
     _studentBehaviorService     = studentBehaviorService;
     _studentCourseGradesService = studentCourseGradesService;
     _imageProvider                = imageProvider;
     _studentAssignmentService     = studentAssignmentService;
     _customParametersProvider     = customParametersProvider;
     _communicationsService        = communicationsService;
     _messagingProvider            = messagingProvider;
     _spotlightIntegrationsService = spotlightIntegrationsService;
     _alertService    = alertService;
     _studentsService = studentsService;
 }
コード例 #2
0
 public TeachersService(ITeacherRepository teacherRepository, IStudentAttendanceService studentAttendanceService, IStudentBehaviorService studentBehaviorService, IStudentCourseGradesService studentCourseGradesService, IImageProvider imageProvider, IStudentAssignmentService studentAssignmentService, ICustomParametersProvider customParametersProvider, ICommunicationsService communicationsService, ISpotlightIntegrationsService spotlightIntegrationsService, IAlertService alertService, IClassPeriodNameProvider classPeriodNameProvider, IStudentsService studentsService, IStudentRepository studentRepository, IDateProvider dateProvider)
 {
     _teacherRepository          = teacherRepository;
     _studentAttendanceService   = studentAttendanceService;
     _studentBehaviorService     = studentBehaviorService;
     _studentCourseGradesService = studentCourseGradesService;
     _imageProvider                = imageProvider;
     _studentAssignmentService     = studentAssignmentService;
     _customParametersProvider     = customParametersProvider;
     _communicationsService        = communicationsService;
     _spotlightIntegrationsService = spotlightIntegrationsService;
     _alertService            = alertService;
     _classPeriodNameProvider = classPeriodNameProvider;
     _studentsService         = studentsService;
     _studentRepository       = studentRepository;
     _dateProvider            = dateProvider;
 }
コード例 #3
0
 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;
 }