public HttpResponseMessage Post(Pantalla_Francisco varPantalla_Francisco) { if (ModelState.IsValid) { var data = "-1"; try { data = Convert.ToString(this.service.Insert(varPantalla_Francisco)); var bitacora = BitacoraHelper.GetBitacora(Request, object_id, Convert.ToInt32(data), BitacoraHelper.TypeSql.INSERT, "sp_InsPantalla_Francisco", new JavaScriptSerializer().Serialize(varPantalla_Francisco), true); serviceBitacora.Insert(bitacora); } catch (ServiceException ex) { var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_InsPantalla_Francisco", new JavaScriptSerializer().Serialize(varPantalla_Francisco), 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_InsPantalla_Francisco", new JavaScriptSerializer().Serialize(varPantalla_Francisco), false, errors.ToString()); serviceBitacora.Insert(bitacora); return(Request.CreateResponse(HttpStatusCode.BadRequest, errors)); } }
public HttpResponseMessage Delete(int id) { Pantalla_Francisco varPantalla_Francisco = this.service.GetByKey(id, false); bool result = false; if (varPantalla_Francisco == 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_DelPantalla_Francisco", new JavaScriptSerializer().Serialize(varPantalla_Francisco), result); serviceBitacora.Insert(bitacora); } catch (ServiceException ex) { var bitacora = BitacoraHelper.GetBitacora(Request, object_id, id, BitacoraHelper.TypeSql.DELETE, "sp_DelPantalla_Francisco", new JavaScriptSerializer().Serialize(varPantalla_Francisco), 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) { Pantalla_Francisco entity = this.service.ListaSelAll(1, 1, "Pantalla_Francisco.Folio='" + id.ToString() + "'", "").Pantalla_Franciscos.First(); Pantalla_Francisco result = new Pantalla_Francisco(); result.Folio = entity.Folio; result.Campo = entity.Campo; return(Request.CreateResponse(HttpStatusCode.OK, result, Configuration.Formatters.JsonFormatter)); }
public HttpResponseMessage PutTunnel(Pantalla_Francisco 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)); }
public HttpResponseMessage Put_Datos_Generales(Pantalla_Francisco varPantalla_Francisco_Datos_Generales) { var data = "-1"; try { data = Convert.ToString(this.service.Update_Datos_Generales(varPantalla_Francisco_Datos_Generales)); var bitacora = BitacoraHelper.GetBitacora(Request, object_id, varPantalla_Francisco_Datos_Generales.Folio, BitacoraHelper.TypeSql.UPDATE, "sp_UpdPantalla_Francisco", new JavaScriptSerializer().Serialize(varPantalla_Francisco_Datos_Generales), true); serviceBitacora.Insert(bitacora); } catch (ServiceException ex) { var bitacora = BitacoraHelper.GetBitacora(Request, object_id, varPantalla_Francisco_Datos_Generales.Folio, BitacoraHelper.TypeSql.UPDATE, "sp_UpdPantalla_Francisco", new JavaScriptSerializer().Serialize(varPantalla_Francisco_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 Pantalla_FranciscoGenerateID() { Pantalla_Francisco varPantalla_Francisco = new Pantalla_Francisco(); var data = "-1"; try { data = Convert.ToString(this.service.Insert(varPantalla_Francisco)); var bitacora = BitacoraHelper.GetBitacora(Request, object_id, Convert.ToInt32(data), BitacoraHelper.TypeSql.INSERT, "sp_Pantalla_FranciscoGenerateID", new JavaScriptSerializer().Serialize(varPantalla_Francisco), true); serviceBitacora.Insert(bitacora); } catch (ServiceException ex) { var bitacora = BitacoraHelper.GetBitacora(Request, object_id, 0, BitacoraHelper.TypeSql.INSERT, "sp_Pantalla_FranciscoGenerateID", new JavaScriptSerializer().Serialize(varPantalla_Francisco), true); serviceBitacora.Insert(bitacora); return(Request.CreateResponse(HttpStatusCode.InternalServerError, ex.Message)); } return(Request.CreateResponse(HttpStatusCode.OK, data, Configuration.Formatters.JsonFormatter)); }