Exemple #1
0
 public GradePopulationItem()
 {
     TotalNumberOfStudents = new AttributeItemWithTrend<decimal?>();
     TotalNumberOfStudentsByGrade = new List<AttributeItemWithTrend<decimal?>>();
     Indicators = new List<AttributeItemWithTrend<decimal?>>();
     SchoolLateEnrollment = new AttributeItemWithUrl<decimal?>();
 }
 private void TestAttributeAndUrl(AttributeItemWithUrl<decimal> model, string attribute)
 {
     Assert.That(model.Attribute, Is.EqualTo(attribute));
     Assert.That(model.Url, Is.EqualTo(schoolAreaLinks.StudentDemographicList(suppliedSchoolId, attribute)));
     
 }