public JsonResult AddInstructor(Instructor instructor)
        {
            if (ModelState.IsValid)
            {
                clientPortalInfo.Instructors.Add(instructor);
                clientPortalInfo.SaveChanges();
                return Json(new { Success = true }, JsonRequestBehavior.AllowGet);
            }

            return Json(new { Success = false }, JsonRequestBehavior.AllowGet);
        }
        public JsonResult UpdateInstructor(Instructor instructor)
        {
            if (ModelState.IsValid)
            {
                var instructorToUpdate = clientPortalInfo.Instructors.FirstOrDefault(instructorInstance => instructorInstance.ID == instructor.ID);

                if (instructorToUpdate != null)
                {
                    instructorToUpdate = instructor;
                    clientPortalInfo.SaveChanges();
                    return Json(new { Success = true }, JsonRequestBehavior.AllowGet);
                }
            }

            return Json(new { Success = false }, JsonRequestBehavior.AllowGet);
        }