public ActionResult UpdateCollege(Guid id)
        {
            CollegeService      collegeService = new CollegeService();
            CollegeDetailsModel modelToDisplay = new CollegeDetailsModel();

            modelToDisplay = collegeService.GetCollege(id);
            return(View(modelToDisplay));
        }
        public ActionResult ViewCollege(Guid id)
        {
            CollegeService      collegeService = new CollegeService();
            CollegeDetailsModel modelToView    = new CollegeDetailsModel();

            modelToView = collegeService.GetCollege(id);
            return(View(modelToView));
        }