Пример #1
0
 public IActionResult OnGet(int?studentId)
 {
     Majors = htmlHelper.GetEnumSelectList <Majors>();
     if (studentId.HasValue)
     {
         Student = studentAppData.GetById(studentId.Value);
     }
     if (studentId == null)
     {
         return(RedirectToPage("./NotFound"));
     }
     return(Page());
 }
Пример #2
0
 public void OnGet(int studentId)
 {
     Student = studentAppData.GetById(studentId);
 }