Пример #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));
                }
                _Iareas_EmpresasApiConsumer.SetAuthHeader(_tokenManager.Token);
                var m = _Iareas_EmpresasApiConsumer.Get_Datos_Generales(Id).Resource;
                if (m == null)
                {
                    return(Json(null, JsonRequestBehavior.AllowGet));
                }

                var result = new areas_Empresas_Datos_GeneralesModel
                {
                    Clave    = m.Clave
                    , Nombre = m.Nombre
                };
                var resultData = new
                {
                    data = result
                };
                return(Json(resultData, JsonRequestBehavior.AllowGet));
            }
            return(Json(null, JsonRequestBehavior.AllowGet));
        }
Пример #2
0
        public ActionResult Post_Datos_Generales(areas_Empresas_Datos_GeneralesModel varareas_Empresas)
        {
            try
            {
                if (!_tokenManager.GenerateToken())
                {
                    return(Json(null, JsonRequestBehavior.AllowGet));
                }
                _Iareas_EmpresasApiConsumer.SetAuthHeader(_tokenManager.Token);

                var result = "";
                var areas_Empresas_Datos_GeneralesInfo = new areas_Empresas_Datos_Generales
                {
                    Clave    = varareas_Empresas.Clave
                    , Nombre = varareas_Empresas.Nombre
                };

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