public HttpResponseMessage Delete(int id) { var item = c.GetById(id); if (item == null) { //Construyendo respuesta del servidor return(Request.CreateErrorResponse(HttpStatusCode.NotFound, "No hay ningun Compra con el id " + id + " para eliminar")); } c.Delete(id); return(Request.CreateResponse(HttpStatusCode.OK, "El registro ha sido eliminado")); }
public void Delete(Compra Objeto) { _iCompra.Delete(Objeto); }
public async Task Delete(Compra Objeto) { await _iCompra.Delete(Objeto); }