public StudentSuccessTeamService(IStudentRepository studentRepository,
                                  IImageProvider imageUrlProvider,
                                  ICommunicationsService communicationsService,
                                  ICustomParametersProvider customParametersProvider)
 {
     _studentRepository        = studentRepository;
     _imageUrlProvider         = imageUrlProvider;
     _communicationsService    = communicationsService;
     _customParametersProvider = customParametersProvider;
 }
Beispiel #2
0
 public FeedbackService(IFeedbackRepository feedbackRepository, IStudentAttendanceService studentAttendanceService, IStudentBehaviorService studentBehaviorService, IStudentCourseGradesService studentCourseGradesService, IImageProvider imageProvider, IStudentAssignmentService studentAssignmentService, ICustomParametersProvider customParametersProvider, ICommunicationsService communicationsService, IMessagingProvider messagingProvider)
 {
     _feedbackRepository         = feedbackRepository;
     _studentAttendanceService   = studentAttendanceService;
     _studentBehaviorService     = studentBehaviorService;
     _studentCourseGradesService = studentCourseGradesService;
     _imageProvider            = imageProvider;
     _studentAssignmentService = studentAssignmentService;
     _customParametersProvider = customParametersProvider;
     _communicationsService    = communicationsService;
     _messagingProvider        = messagingProvider;
 }
Beispiel #3
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;
 }
Beispiel #4
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;
 }
 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;
 }
 public CommunicationsController(ICommunicationsService communicationsService)
 {
     _communicationsService = communicationsService;
 }
Beispiel #7
0
 public WebController(ICommunicationsService mvmService)
 {
     _mvmService = mvmService;
 }
Beispiel #8
0
 public CommunicationsController(ICommunicationsService communicationsService, INotificationsService notificationsService)
 {
     _communicationsService = communicationsService;
     _notificationsService  = notificationsService;
 }