public ActionResult Details(int id)
        {
            Student student = _studentStorage.Students.Find(id);

            _studentStorage.Entry(student).Collection(s => s.Subjects).Load();
            return(View(_studentStorage.Students.Find(id)));
        }