Beispiel #1
0
        public HttpResponseMessage Post(Aseguradoras varAseguradoras)
        {
            if (ModelState.IsValid)
            {
                var data = "-1";
                try
                {
                    data = Convert.ToString(this.service.Insert(varAseguradoras));
                    var bitacora = BitacoraHelper.GetBitacora(Request, object_id, Convert.ToInt32(data), BitacoraHelper.TypeSql.INSERT, "sp_InsAseguradoras", new JavaScriptSerializer().Serialize(varAseguradoras), true);
                    serviceBitacora.Insert(bitacora);
                }
                catch (ServiceException ex)
                {
                    var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_InsAseguradoras", new JavaScriptSerializer().Serialize(varAseguradoras), true);
                    serviceBitacora.Insert(bitacora);
                    return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message));
                }

                return(Request.CreateResponse(HttpStatusCode.OK, data, Configuration.Formatters.JsonFormatter));
            }
            else
            {
                var errors   = ModelState.SelectMany(m => m.Value.Errors.Select(err => err.ErrorMessage != string.Empty ? err.ErrorMessage : err.Exception.Message).ToList()).ToList();
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_InsAseguradoras", new JavaScriptSerializer().Serialize(varAseguradoras), false, errors.ToString());
                serviceBitacora.Insert(bitacora);
                return(Request.CreateResponse(HttpStatusCode.BadRequest, errors));
            }
        }
Beispiel #2
0
        public HttpResponseMessage Delete(int id)
        {
            Aseguradoras varAseguradoras = this.service.GetByKey(id, false);
            bool         result          = false;

            if (varAseguradoras == null)
            {
                return(Request.CreateResponse(HttpStatusCode.NotFound));
            }

            try
            {
                result = this.service.Delete(id);//, globalData, dataReference);
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, id, BitacoraHelper.TypeSql.DELETE, "sp_DelAseguradoras", new JavaScriptSerializer().Serialize(varAseguradoras), result);
                serviceBitacora.Insert(bitacora);
            }
            catch (ServiceException ex)
            {
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, id, BitacoraHelper.TypeSql.DELETE, "sp_DelAseguradoras", new JavaScriptSerializer().Serialize(varAseguradoras), result, ex.Message);
                serviceBitacora.Insert(bitacora);
                return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message));
            }

            return(Request.CreateResponse(HttpStatusCode.OK, result));
        }
Beispiel #3
0
        public ActionResult Post(bool IsNew, AseguradorasModel varAseguradoras)
        {
            try
            {
                //if (ModelState.IsValid)
                //{
                if (!_tokenManager.GenerateToken())
                {
                    return(Json(null, JsonRequestBehavior.AllowGet));
                }
                _IAseguradorasApiConsumer.SetAuthHeader(_tokenManager.Token);



                var result           = "";
                var AseguradorasInfo = new Aseguradoras
                {
                    Folio    = varAseguradoras.Folio
                    , Nombre = varAseguradoras.Nombre
                };

                result = !IsNew?
                         _IAseguradorasApiConsumer.Update(AseguradorasInfo, null, null).Resource.ToString() :
                             _IAseguradorasApiConsumer.Insert(AseguradorasInfo, null, null).Resource.ToString();

                Session["KeyValueInserted"] = result;
                return(Json(result, JsonRequestBehavior.AllowGet));
                //}
                //return Json(false, JsonRequestBehavior.AllowGet);
            }
            catch (ServiceException ex)
            {
                return(Json(false, JsonRequestBehavior.AllowGet));
            }
        }
Beispiel #4
0
        public HttpResponseMessage Get_Datos_Generales(int id)
        {
            Aseguradoras entity = this.service.ListaSelAll(1, 1, "Aseguradoras.Folio='" + id.ToString() + "'", "").Aseguradorass.First();
            Aseguradoras result = new Aseguradoras();

            result.Folio  = entity.Folio;
            result.Nombre = entity.Nombre;

            return(Request.CreateResponse(HttpStatusCode.OK, result, Configuration.Formatters.JsonFormatter));
        }
Beispiel #5
0
        public HttpResponseMessage PutTunnel(Aseguradoras emp, string user, string password)
        {
            var client = new System.Net.WebClient();

            client.Headers = TokenManager.GetAuthenticationHeader(user, password);
            client.Headers["Content-Type"] = "application/json";
            var dataString = new JavaScriptSerializer().Serialize(emp);

            var result = client.UploadString(new Uri(baseApi + ApiControllerUrl + "/Put?Id=" + emp.Folio), "PUT"
                                             , dataString);

            return(Request.CreateResponse(HttpStatusCode.OK, result, Configuration.Formatters.JsonFormatter));
        }
Beispiel #6
0
        public HttpResponseMessage Put_Datos_Generales(Aseguradoras varAseguradoras_Datos_Generales)
        {
            var data = "-1";

            try
            {
                data = Convert.ToString(this.service.Update_Datos_Generales(varAseguradoras_Datos_Generales));
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, varAseguradoras_Datos_Generales.Folio, BitacoraHelper.TypeSql.UPDATE, "sp_UpdAseguradoras", new JavaScriptSerializer().Serialize(varAseguradoras_Datos_Generales), true);
                serviceBitacora.Insert(bitacora);
            }
            catch (ServiceException ex)
            {
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, varAseguradoras_Datos_Generales.Folio, BitacoraHelper.TypeSql.UPDATE, "sp_UpdAseguradoras", new JavaScriptSerializer().Serialize(varAseguradoras_Datos_Generales), false, ex.Message);
                serviceBitacora.Insert(bitacora);
                return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message));
            }

            return(Request.CreateResponse(HttpStatusCode.OK, data, Configuration.Formatters.JsonFormatter));
        }
Beispiel #7
0
        public HttpResponseMessage AseguradorasGenerateID()
        {
            Aseguradoras varAseguradoras = new Aseguradoras();
            var          data            = "-1";

            try
            {
                data = Convert.ToString(this.service.Insert(varAseguradoras));
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, Convert.ToInt32(data), BitacoraHelper.TypeSql.INSERT, "sp_AseguradorasGenerateID", new JavaScriptSerializer().Serialize(varAseguradoras), true);
                serviceBitacora.Insert(bitacora);
            }
            catch (ServiceException ex)
            {
                var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_AseguradorasGenerateID", new JavaScriptSerializer().Serialize(varAseguradoras), true);
                serviceBitacora.Insert(bitacora);
                return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message));
            }

            return(Request.CreateResponse(HttpStatusCode.OK, data, Configuration.Formatters.JsonFormatter));
        }
Beispiel #8
0
        public ActionResult Delete(int id)
        {
            try
            {
                if (!_tokenManager.GenerateToken())
                {
                    return(Json(null, JsonRequestBehavior.AllowGet));
                }
                _IAseguradorasApiConsumer.SetAuthHeader(_tokenManager.Token);

                Aseguradoras varAseguradoras = null;
                if (id.ToString() != "0")
                {
                    string where = "";
                }
                var result = _IAseguradorasApiConsumer.Delete(id, null, null).Resource;
                return(Json(result, JsonRequestBehavior.AllowGet));
            }
            catch (ServiceException ex)
            {
                return(Json(false, JsonRequestBehavior.AllowGet));
            }
        }