public Boolean delete(Int32 Codpro) { try { return(Mpro.Delete(Codpro)); } catch (Exception ex) { DevComponents.DotNetBar.MessageBoxEx.Show("Se encontrĂ³ el siguiente problema: " + ex.Message, "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Warning); return(false); } }
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 Producto con el id " + id + " para eliminar")); } c.Delete(id); return(Request.CreateResponse(HttpStatusCode.OK, "El registro ha sido eliminado")); }
//Delete public Boolean Delete(clsProducto delete) { try { return(iproducto.Delete(delete)); } catch (Exception ex) { MessageBox.Show("Se encontrĂ³ el siguiente problema: " + ex.Message, "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Warning); return(false); } }