public override StudentWithMetrics.IndicatorMetric OnStudentAssessmentInitialized(StudentWithMetricsAndAssessments studentWithMetricsAndAssessments,
            List<StudentMetric> studentList, StaffModel.SubjectArea subjectArea)
        {
            int metricVariantId = -1;
            switch (subjectArea)
            {
                case StaffModel.SubjectArea.Mathematics:
                    metricVariantId = (int)NweaStudentMetricEnum.MAPMathematics;
                    break;
                case StaffModel.SubjectArea.ELA:
                    metricVariantId = (int) NweaStudentMetricEnum.MAPReading;
                    break;
                case StaffModel.SubjectArea.Science:
                    metricVariantId = (int) NweaStudentMetricEnum.MAPScience;
                    break;
                case StaffModel.SubjectArea.Writing:
                    metricVariantId = (int) NweaStudentMetricEnum.MAPLanguage;
                    break;
            }

            var metric =
                studentList.FirstOrDefault(x => x.MetricVariantId == metricVariantId);

            return new StudentWithMetrics.IndicatorMetric(studentWithMetricsAndAssessments.StudentUSI)
            {
                MetricVariantId = metricVariantId,
                MetricIndicator = metric != null && metric.IndicatorTypeId.HasValue ? metric.IndicatorTypeId.Value : 0,
                State = metric != null && metric.MetricStateTypeId.HasValue ? (MetricStateType)metric.MetricStateTypeId : MetricStateType.None,
                Value = metric != null ? metric.Value : null,
                DisplayValue = metric != null ? metric.Value : ""
            };
        }
Ejemplo n.º 2
0
 public StaffMenuModel(StaffModel staffModel)
 {
     StaffUSI = staffModel.StaffUSI;
     FullName = staffModel.FullName;
     ProfileThumbnail = staffModel.ProfileThumbnail;
     CurrentSchool = staffModel.CurrentSchool;
     Schools = staffModel.Schools;
     CurrentSection = staffModel.CurrentSection;
     SectionsAndCohorts = staffModel.SectionsAndCohorts;
     Views = staffModel.Views;
 }
 public virtual StudentWithMetrics.IndicatorMetric OnStudentAssessmentInitialized(
     StudentWithMetricsAndAssessments studentWithMetricsAndAssessments, List<StudentMetric> studentList, StaffModel.SubjectArea subjectArea)
 {
     System.Diagnostics.Debug.Assert(studentList.Count > 0);
     return new StudentWithMetrics.IndicatorMetric(studentList[0].StudentUSI)
     {
         MetricVariantId = -1,
         MetricIndicator = (int)MetricIndicatorType.None,
         State = MetricStateType.None,
         Value = null
     };
 }
Ejemplo n.º 4
0
 protected override void ExecuteTest()
 {
     var staffService = new StaffService(staffCohortRepository, staffInfoRepository, teacherSectionRepository, schoolInformationRepository, staffAreaLinksFake, applicationStaffCohortRepository, WatchListRepository, WatchListOptionRepository, currentUserClaimInterrogator, staffViewProvider, watchListLinkProvider);
     actualModel = staffService.Get(new StaffRequest
                                        {
                                            StaffUSI = providedStaffUSI1,
                                            SchoolId = providedSchoolId,
                                            StudentListType = suppliedStudentListType,
                                            SectionOrCohortId = suppliedSectionId,
                                            ViewType = suppliedViewType
                                        });
 }
Ejemplo n.º 5
0
 public virtual string GetStudentsFixedRowTitle(StaffModel.AssessmentSubType assessmentSubType, dynamic metricAssessmentArea)
 {
     return "# Students Mastering Objective";
 }