public async Task <IActionResult> Details(int?id) { if (id == null) { return(NotFound()); } var Major = _majorRepository.GetMajorById(id.Value); if (Major == null) { return(NotFound()); } return(View(Major)); }