コード例 #1
0
        public IActionResult Index()
        {
            var schools        = schoolDac.Get().OrderBy(x => x.sc_name);
            var educationAreas = educationAreaDac.Get();

            ViewBag.educationAreas = educationAreas;
            return(View(schools));
        }
コード例 #2
0
 public SchoolData GetCurrentSchool()
 {
     //TODO: get current school
     return(schoolDac.Get(1057120596));
 }