// PUT api/<controller>/5 // public void Put(int id, [FromBody]string value) //{ //} // DELETE api/Concepto/5 public HttpResponseMessage Delete(long id) { HttpResponseMessage response; try { ConceptoService service = (ConceptoService) new ConceptoService().setDatabase(db); Concepto c = service.find(id); service.delete(id); if (c.Estado == "D") { response = this.getSuccessResponse(c); } else { response = this.getSuccessResponse("No se puede eliminar porque existe una compra o hay stock disponible"); } } catch (Exception e) { response = this.getErrorResponse(e); } return(response); }
// GET api/Concepto/5 public HttpResponseMessage GetConcepto(long id) { HttpResponseMessage response; try { ConceptoService service = (ConceptoService) new ConceptoService().setDatabase(db); Concepto c = service.find(id); response = this.getSuccessResponse(c); } catch (Exception e) { response = this.getErrorResponse(e); } return(response); }