示例#1
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);
                _ITipo_de_ExtradiccionApiConsumer.SetAuthHeader(_tokenManager.Token);
                var m = _ITipo_de_ExtradiccionApiConsumer.Get_Datos_Generales(Id).Resource;
                if (m == null)
                    return Json(null, JsonRequestBehavior.AllowGet);
				
                var result = new Tipo_de_Extradiccion_Datos_GeneralesModel
                {
                    Clave = m.Clave
			,Descripcion = m.Descripcion

                    
                };
				var resultData = new
                {
                    data = result

                };
                return Json(resultData, JsonRequestBehavior.AllowGet);
            }
            return Json(null, JsonRequestBehavior.AllowGet);            
        }
示例#2
0
        public ActionResult Post_Datos_Generales(Tipo_de_Extradiccion_Datos_GeneralesModel varTipo_de_Extradiccion)
        {
            try
            {
                if (!_tokenManager.GenerateToken())
                    return Json(null, JsonRequestBehavior.AllowGet);
                _ITipo_de_ExtradiccionApiConsumer.SetAuthHeader(_tokenManager.Token);
				
                var result = "";
                var Tipo_de_Extradiccion_Datos_GeneralesInfo = new Tipo_de_Extradiccion_Datos_Generales
                {
                    Clave = varTipo_de_Extradiccion.Clave
                                            ,Descripcion = varTipo_de_Extradiccion.Descripcion
                    
                };

                result = _ITipo_de_ExtradiccionApiConsumer.Update_Datos_Generales(Tipo_de_Extradiccion_Datos_GeneralesInfo).Resource.ToString();
                Session["KeyValueInserted"] = result;
                return Json(result, JsonRequestBehavior.AllowGet);
            }
            catch (ServiceException ex)
            {
                return Json(false, JsonRequestBehavior.AllowGet);
            }
        }