public JsonResult DeleteStatus(string id)
        {
            objBDC = new SessionMasterBusiness();
            int  Id      = Convert.ToInt32(id);
            bool _Result = objBDC.FindById(Id);

            if (_Result == true)
            {
                _Result = false;
            }
            else
            {
                _Result = true;
            }

            SessionMasterCustomModel objModel = new SessionMasterCustomModel();

            objModel.SessionId = Id;
            objBDC.DeleteSessionRegistrationDetail(objModel);

            return(Json(new { result = _Result }));
        }