public HttpResponseMessage Post(Antiguedad_Ejercicios varAntiguedad_Ejercicios) { if (ModelState.IsValid) { var data = "-1"; try { data = Convert.ToString(this.service.Insert(varAntiguedad_Ejercicios)); var bitacora = BitacoraHelper.GetBitacora(Request, object_id, Convert.ToInt32(data), BitacoraHelper.TypeSql.INSERT, "sp_InsAntiguedad_Ejercicios", new JavaScriptSerializer().Serialize(varAntiguedad_Ejercicios), true); serviceBitacora.Insert(bitacora); } catch (ServiceException ex) { var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_InsAntiguedad_Ejercicios", new JavaScriptSerializer().Serialize(varAntiguedad_Ejercicios), 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_InsAntiguedad_Ejercicios", new JavaScriptSerializer().Serialize(varAntiguedad_Ejercicios), false, errors.ToString()); serviceBitacora.Insert(bitacora); return(Request.CreateResponse(HttpStatusCode.BadRequest, errors)); } }
public HttpResponseMessage Delete(int id) { Antiguedad_Ejercicios varAntiguedad_Ejercicios = this.service.GetByKey(id, false); bool result = false; if (varAntiguedad_Ejercicios == 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_DelAntiguedad_Ejercicios", new JavaScriptSerializer().Serialize(varAntiguedad_Ejercicios), result); serviceBitacora.Insert(bitacora); } catch (ServiceException ex) { var bitacora = BitacoraHelper.GetBitacora(Request, object_id, id, BitacoraHelper.TypeSql.DELETE, "sp_DelAntiguedad_Ejercicios", new JavaScriptSerializer().Serialize(varAntiguedad_Ejercicios), result, ex.Message); serviceBitacora.Insert(bitacora); return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message)); } return(Request.CreateResponse(HttpStatusCode.OK, result)); }
public HttpResponseMessage Get_Datos_Generales(int id) { Antiguedad_Ejercicios entity = this.service.ListaSelAll(1, 1, "Antiguedad_Ejercicios.Clave='" + id.ToString() + "'", "").Antiguedad_Ejercicioss.First(); Antiguedad_Ejercicios result = new Antiguedad_Ejercicios(); result.Clave = entity.Clave; result.Descripcion = entity.Descripcion; return(Request.CreateResponse(HttpStatusCode.OK, result, Configuration.Formatters.JsonFormatter)); }
public HttpResponseMessage PutTunnel(Antiguedad_Ejercicios 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.Clave), "PUT" , dataString); return(Request.CreateResponse(HttpStatusCode.OK, result, Configuration.Formatters.JsonFormatter)); }
public HttpResponseMessage Put_Datos_Generales(Antiguedad_Ejercicios varAntiguedad_Ejercicios_Datos_Generales) { var data = "-1"; try { data = Convert.ToString(this.service.Update_Datos_Generales(varAntiguedad_Ejercicios_Datos_Generales)); var bitacora = BitacoraHelper.GetBitacora(Request, object_id, varAntiguedad_Ejercicios_Datos_Generales.Clave, BitacoraHelper.TypeSql.UPDATE, "sp_UpdAntiguedad_Ejercicios", new JavaScriptSerializer().Serialize(varAntiguedad_Ejercicios_Datos_Generales), true); serviceBitacora.Insert(bitacora); } catch (ServiceException ex) { var bitacora = BitacoraHelper.GetBitacora(Request, object_id, varAntiguedad_Ejercicios_Datos_Generales.Clave, BitacoraHelper.TypeSql.UPDATE, "sp_UpdAntiguedad_Ejercicios", new JavaScriptSerializer().Serialize(varAntiguedad_Ejercicios_Datos_Generales), false, ex.Message); serviceBitacora.Insert(bitacora); return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message)); } return(Request.CreateResponse(HttpStatusCode.OK, data, Configuration.Formatters.JsonFormatter)); }
public HttpResponseMessage Antiguedad_EjerciciosGenerateID() { Antiguedad_Ejercicios varAntiguedad_Ejercicios = new Antiguedad_Ejercicios(); var data = "-1"; try { data = Convert.ToString(this.service.Insert(varAntiguedad_Ejercicios)); var bitacora = BitacoraHelper.GetBitacora(Request, object_id, Convert.ToInt32(data), BitacoraHelper.TypeSql.INSERT, "sp_Antiguedad_EjerciciosGenerateID", new JavaScriptSerializer().Serialize(varAntiguedad_Ejercicios), true); serviceBitacora.Insert(bitacora); } catch (ServiceException ex) { var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_Antiguedad_EjerciciosGenerateID", new JavaScriptSerializer().Serialize(varAntiguedad_Ejercicios), true); serviceBitacora.Insert(bitacora); return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message)); } return(Request.CreateResponse(HttpStatusCode.OK, data, Configuration.Formatters.JsonFormatter)); }