예제 #1
0
        public JsonResult ResponderAlertLoadbyAccountNoModule(string AccountNo, string Module)
        {
            bool   success  = true;
            string _Message = string.Empty;
            List <ResponderAlertModel> data = new List <ResponderAlertModel>();

            try
            {
                data = ResponderAlertModel.ResponderAlert_LoadbyAccountNoModule(AccountNo, Module);
            }
            catch (Exception ex)
            {
                _Message = ex.Message;
                success  = false;
            }

            return(Json(new { success = success, message = _Message, total = data.Count, results = data }, JsonRequestBehavior.AllowGet));
        }
예제 #2
0
        public JsonResult ResponderAlertUpdate(int ID, string AccountNo, string ResponderName, string ResponderRelationShip, string ResponderPhoneNo, string ResponderEmail, string Status, string User)
        {
            bool   success  = true;
            string _Message = string.Empty;
            List <ResponderAlertModel> data = new List <ResponderAlertModel>();

            try
            {
                success = ResponderAlertModel.ResponderAlert_Update(ID, AccountNo, ResponderName, ResponderRelationShip, ResponderPhoneNo, ResponderEmail, Status, User);
            }
            catch (Exception ex)
            {
                _Message = ex.Message;
                success  = false;
            }

            return(Json(new { success = success, message = _Message, total = data.Count, results = data }, JsonRequestBehavior.AllowGet));
        }
예제 #3
0
        public JsonResult GetResponderAlertByID(int ID)
        {
            bool   success  = true;
            string _Message = string.Empty;
            List <ResponderAlertModel> data = new List <ResponderAlertModel>();

            try
            {
                data = ResponderAlertModel.Get_ResponderAlertByID(ID);
            }
            catch (Exception ex)
            {
                _Message = ex.Message;
                success  = false;
            }

            return(Json(new { success = success, message = _Message, total = data.Count, results = data }, JsonRequestBehavior.AllowGet));
        }