public ActionResult Details(int id)
        {
            var entity = _semesterRepository.FindById(id);

            return(View(entity));
        }