コード例 #1
0
        public void OnGet()
        {
            StudentDataService IfaceStudent = new StudentDataService();

            TopFiveStudent = IfaceStudent.GetTopFiveScoringStudent();
            if (TopFiveStudent == null)
            {
                DisplayMessage = "Error Obtaining Student Records from the Database.";
            }
            else
            {
                DisplayMessage = "Top Five Overall Students";
            }
        }