コード例 #1
0
 public SubmissionCycleService(
     IDbContextFactory <ValidationPortalDbContext> validationPortalDataContextFactory,
     ISchoolYearService schoolYearService,
     ILoggingService loggingService)
 {
     ValidationPortalDataContextFactory = validationPortalDataContextFactory;
     SchoolYearService = schoolYearService;
     LoggingService    = loggingService;
 }
コード例 #2
0
 public NavController(
     IAppUserService appUserService,
     IEdOrgService edOrgService,
     ISchoolYearService schoolYearService,
     IConfigurationValues configurationValues)
 {
     _appUserService      = appUserService;
     _edOrgService        = edOrgService;
     _schoolYearService   = schoolYearService;
     _configurationValues = configurationValues;
 }
コード例 #3
0
 public EdOrgService(
     IDbContextFactory <ValidationPortalDbContext> validationPortalDataContextFactory,
     IAppUserService appUserService,
     ISchoolYearService schoolYearService,
     ILoggingService loggingService)
 {
     ValidationPortalDataContextFactory = validationPortalDataContextFactory;
     AppUserService    = appUserService;
     SchoolYearService = schoolYearService;
     LoggingService    = loggingService;
 }
コード例 #4
0
 public DynamicController(
     IDynamicReportingService dynamicReportingService,
     IAppUserService appUserService,
     IEdOrgService edOrgService,
     ISchoolYearService schoolYearService)
 {
     DynamicReportingService = dynamicReportingService;
     AppUserService          = appUserService;
     EdOrgService            = edOrgService;
     SchoolYearService       = schoolYearService;
 }
コード例 #5
0
 public DynamicReportingService(
     IDbContextFactory <ValidationPortalDbContext> validationPortalDataContextFactory,
     ISchoolYearDbContextFactory schoolYearDbContextFactory,
     ISchoolYearService schoolYearService,
     ILoggingService loggingService,
     IRulesEngineConfigurationValues rulesEngineConfigurationValues)
 {
     ValidationPortalDataContextFactory = validationPortalDataContextFactory;
     SchoolYearDbContextFactory         = schoolYearDbContextFactory;
     SchoolYearService = schoolYearService;
     LoggingService    = loggingService;
     RulesEngineConfigurationValues = rulesEngineConfigurationValues;
 }
コード例 #6
0
 public AdminController(
     IAppUserService appUserService,
     IEdOrgService edOrgService,
     ISchoolYearService schoolYearService,
     IRulesEngineService rulesEngineService,
     ISubmissionCycleService submissionCycleService,
     IAnnouncementService announcementService)
 {
     _appUserService         = appUserService;
     _edOrgService           = edOrgService;
     _schoolYearService      = schoolYearService;
     _rulesEngineService     = rulesEngineService;
     _submissionCycleService = submissionCycleService;
     _announcementService    = announcementService;
 }
コード例 #7
0
 public RulesEngineService(
     IAppUserService appUserService,
     IEdOrgService edOrgService,
     ISchoolYearService schoolYearService,
     IRulesEngineConfigurationValues engineConfig,
     ILoggingService loggingService,
     IDbContextFactory <ValidationPortalDbContext> dbContextFactory,
     Model engineObjectModel)
 {
     _appUserService    = appUserService;
     _edOrgService      = edOrgService;
     _schoolYearService = schoolYearService;
     _loggingService    = loggingService;
     _engineConfig      = engineConfig;
     DbContextFactory   = dbContextFactory;
     _engineObjectModel = engineObjectModel;
 }
コード例 #8
0
 public HomeController(
     IAnnouncementService announcementService,
     IAppUserService appUserService,
     IEdOrgService edOrgService,
     ISchoolYearService schoolYearService,
     IOdsDataService odsDataService,
     ISubmissionCycleService submissionCycleService,
     IRecordsRequestService recordsRequestService,
     IConfigurationValues configurationValues)
 {
     AnnouncementService    = announcementService;
     AppUserService         = appUserService;
     EdOrgService           = edOrgService;
     SchoolYearService      = schoolYearService;
     OdsDataService         = odsDataService;
     SubmissionCycleService = submissionCycleService;
     RecordsRequestService  = recordsRequestService;
     ConfigurationValues    = configurationValues;
 }
コード例 #9
0
 public ValidationController(
     IAppUserService appUserService,
     IEdOrgService edOrgService,
     ILoggingService loggingService,
     IValidationResultsService validationResultsService,
     IRulesEngineService rulesEngineService,
     ISchoolYearService schoolYearService,
     ISubmissionCycleService submissionCycleService,
     Model engineObjectModel,
     ICacheManager cacheManager)
 {
     _appUserService           = appUserService;
     _edOrgService             = edOrgService;
     _engineObjectModel        = engineObjectModel;
     _loggingService           = loggingService;
     _rulesEngineService       = rulesEngineService;
     _schoolYearService        = schoolYearService;
     _submissionCycleService   = submissionCycleService;
     _validationResultsService = validationResultsService;
     _cacheManager             = cacheManager;
 }
コード例 #10
0
 public RulesEngineService(
     IAppUserService appUserService,
     IEdOrgService edOrgService,
     ISchoolYearService schoolYearService,
     IRulesEngineConfigurationValues engineConfig,
     ILoggingService loggingService,
     IDbContextFactory <ValidationPortalDbContext> dbContextFactory,
     ISchoolYearDbContextFactory odsDbContextFactory,
     Model engineObjectModel,
     IManualRuleExecutionService manualRuleExecutionService)
 {
     AppUserService             = appUserService;
     EdOrgService               = edOrgService;
     SchoolYearService          = schoolYearService;
     LoggingService             = loggingService;
     EngineConfig               = engineConfig;
     DbContextFactory           = dbContextFactory;
     OdsDbContextFactory        = odsDbContextFactory;
     EngineObjectModel          = engineObjectModel;
     ManualRuleExecutionService = manualRuleExecutionService;
 }
コード例 #11
0
 public SchoolYearController(ISchoolYearService schoolYearService)
 {
     _schoolYearService = schoolYearService;
 }
コード例 #12
0
 public SchoolYearController(IMapper mapper, ISchoolYearService service) : base(mapper)
 {
     _service = service;
 }
コード例 #13
0
 public ValidatedDataSubmissionService(ISchoolYearService schoolYearService)
 {
     _schoolYearService = schoolYearService;
 }
コード例 #14
0
 public ServiceLocatorSchool(IServiceLocatorMaster serviceLocatorMaster)
     : base(serviceLocatorMaster.Context)
 {
     this.serviceLocatorMaster = serviceLocatorMaster;
     personService             = new PersonService(this);
     addressSerivce            = new AddressService(this);
     gradeLevelService         = new GradeLevelService(this);
     markingPeriodService      = new MarkingPeriodService(this);
     classService                  = new ClassService(this);
     schoolYearService             = new SchoolYearService(this);
     announcementQnAService        = new AnnouncementQnAService(this);
     announcementAttachmentService = new AnnouncementAttachmentService(this);
     phoneService                  = new PhoneService(this);
     privateMessageService         = new PrivateMessageService(this);
     roomService                          = new RoomService(this);
     periodService                        = new PeriodService(this);
     calendarDateService                  = new CalendarDateService(this);
     dayTypeService                       = new DayTypeService(this);
     classPeriodService                   = new ClassPeriodService(this);
     notificationService                  = new NotificationService(this);
     attendanceReasonService              = new AttendanceReasonService(this);
     attendanceService                    = new AttendanceService(this);
     studentParentService                 = new StudentParentService(this);
     studentAnnouncementService           = new StudentAnnouncementService(this);
     classClassAnnouncementTypeService    = new ClassClassAnnouncementTypeService(this);
     infractionService                    = new InfractionService(this);
     applicationSchoolService             = new ApplicationSchoolService(this);
     disciplineService                    = new DisciplineService(this);
     gradingStatisticService              = new GradingStatisticService(this);
     schoolService                        = new SchoolService(this);
     schoolPersonService                  = new SchoolPersonService(this);
     standardService                      = new StandardService(this);
     alphaGradeService                    = new AlphaGradeService(this);
     alternateScoreService                = new AlternateScoreService(this);
     gradingPeriodService                 = new GradingPeriodService(this);
     syncService                          = new SyncService(this);
     gradingStandardService               = new GradingStandardService(this);
     reportService                        = new ReportingService(this);
     gradingCommentService                = new GradingCommentService(this);
     gradingScaleService                  = new GradingScaleService(this);
     classroomOptionService               = new ClassroomOptionService(this);
     personEmailService                   = new PersonEmailService(this);
     schoolDbService                      = new DbService(Context != null ? Context.SchoolConnectionString : null);
     scheduledTimeSlotService             = new ScheduledTimeSlotService(this);
     studentService                       = new StudentService(this);
     staffService                         = new StaffService(this);
     userSchoolService                    = new UserSchoolService(this);
     bellScheduleService                  = new BellScheduleService(this);
     practiceGradeService                 = new PracticeGradeService(this);
     attendanceMonthService               = new AttendanceMonthService(this);
     gradedItemService                    = new GradedItemService(this);
     announcementAttributeService         = new AnnouncementAttributeService(this);
     announcementAssignedAttributeService = new AnnouncementAssignedAttributeService(this);
     contactService                       = new ContactService(this);
     teacherCommentService                = new TeacherCommentService(this);
     dbMaintenanceService                 = new DbMaintenanceService(this);
     groupService                         = new GroupService(this);
     courseTypeService                    = new CourseTypeService(this);
     settingsService                      = new SettingsService(this);
     lpGalleryCategoryService             = new LPGalleryCategoryService(this);
     lessonPlanService                    = new LessonPlanService(this);
     classAnnouncementService             = new ClassAnnouncementService(this);
     adminAnnouncementService             = new AdminAnnouncementService(this);
     announcementFetchService             = new AnnouncementFetchService(this);
     leService                       = new LEService(this);
     attachementService              = new AttachmentService(this);
     personSettingService            = new PersonSettingService(this);
     studentCustomAlertDetailService = new StudentCustomAlertDetailService(this);
     panoramaSettingsService         = new PanoramaSettingsService(this);
     standardizedTestService         = new StandardizedTestService(this);
     supplementalAnnouncementService = new SupplementalAnnouncementService(this);
     ethnicityService                = new EthnicityService(this);
     languageService                 = new LanguageService(this);
     countryService                  = new CountryService(this);
     announcementCommentService      = new AnnouncementCommentService(this);
     appSettingService               = new AppSettingService(this);
     limitedEnglishService           = new LimitedEnglishService(this);
     schoolProgramService            = new SchoolProgramService(this);
     studentSchoolProgramService     = new StudentSchoolProgramService(this);
     mealTypeService                 = new MealTypeService(this);
     lunchCountService               = new LunchCountService(this);
 }