Exemplo n.º 1
0
        public ActionResult Post_Datos_Generales(Padecimientos_Datos_GeneralesModel varPadecimientos)
        {
            try
            {
                if (!_tokenManager.GenerateToken())
                    return Json(null, JsonRequestBehavior.AllowGet);
                _IPadecimientosApiConsumer.SetAuthHeader(_tokenManager.Token);

                var result = "";
                var Padecimientos_Datos_GeneralesInfo = new Padecimientos_Datos_Generales
                {
                    Clave = varPadecimientos.Clave
                                            ,Descripcion = varPadecimientos.Descripcion

                };

                result = _IPadecimientosApiConsumer.Update_Datos_Generales(Padecimientos_Datos_GeneralesInfo).Resource.ToString();
                Session["KeyValueInserted"] = result;
                return Json(result, JsonRequestBehavior.AllowGet);
            }
            catch (ServiceException ex)
            {
                return Json(false, JsonRequestBehavior.AllowGet);
            }
        }
Exemplo n.º 2
0
        public JsonResult Get_Datos_Generales(string Id)
        {
            if ((Id.GetType() == typeof(string) && Id.ToString() != "") || ((Id.GetType() == typeof(int) || Id.GetType() == typeof(Int16) || Id.GetType() == typeof(Int32) || Id.GetType() == typeof(Int64) || Id.GetType() == typeof(short)) && Id.ToString() != "0"))
            {
                if (!_tokenManager.GenerateToken())
                    return Json(null, JsonRequestBehavior.AllowGet);
                _IPadecimientosApiConsumer.SetAuthHeader(_tokenManager.Token);
                var m = _IPadecimientosApiConsumer.Get_Datos_Generales(Id).Resource;
                if (m == null)
                    return Json(null, JsonRequestBehavior.AllowGet);

                var result = new Padecimientos_Datos_GeneralesModel
                {
                    Clave = m.Clave
            ,Descripcion = m.Descripcion

                };
                var resultData = new
                {
                    data = result

                };
                return Json(resultData, JsonRequestBehavior.AllowGet);
            }
            return Json(null, JsonRequestBehavior.AllowGet);
        }