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)); } _IZona_de_RoboApiConsumer.SetAuthHeader(_tokenManager.Token); var m = _IZona_de_RoboApiConsumer.Get_Datos_Generales(Id).Resource; if (m == null) { return(Json(null, JsonRequestBehavior.AllowGet)); } var result = new Zona_de_Robo_Datos_GeneralesModel { Clave = m.Clave , Descripcion = m.Descripcion }; var resultData = new { data = result }; return(Json(resultData, JsonRequestBehavior.AllowGet)); } return(Json(null, JsonRequestBehavior.AllowGet)); }
public ActionResult Post_Datos_Generales(Zona_de_Robo_Datos_GeneralesModel varZona_de_Robo) { try { if (!_tokenManager.GenerateToken()) { return(Json(null, JsonRequestBehavior.AllowGet)); } _IZona_de_RoboApiConsumer.SetAuthHeader(_tokenManager.Token); var result = ""; var Zona_de_Robo_Datos_GeneralesInfo = new Zona_de_Robo_Datos_Generales { Clave = varZona_de_Robo.Clave , Descripcion = varZona_de_Robo.Descripcion }; result = _IZona_de_RoboApiConsumer.Update_Datos_Generales(Zona_de_Robo_Datos_GeneralesInfo).Resource.ToString(); Session["KeyValueInserted"] = result; return(Json(result, JsonRequestBehavior.AllowGet)); } catch (ServiceException ex) { return(Json(false, JsonRequestBehavior.AllowGet)); } }