public JsonResult EnableOrDisableFacultySchedule(int facultyId, bool isSchEditEnabled)
        {
            bool status = _facultyService.EnableOrDisableFacultySchedule(facultyId, isSchEditEnabled);

            return(Json(status, JsonRequestBehavior.AllowGet));
        }