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 cliente con el id " + id + " para eliminar")); } c.Delete(id); return(Request.CreateResponse(HttpStatusCode.OK, "El registro ha sido eliminado")); }
//Eliminar public Boolean delete(clsCliente delete) { try { return(iCliente.Delete(delete)); } catch (Exception ex) { MessageBox.Show("Se encontró el siguiente problema : " + ex.Message, "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Warning); return(false); } }
public Boolean delete(Int32 Codcli) { try { return(Mcli.Delete(Codcli)); } catch (Exception ex) { DevComponents.DotNetBar.MessageBoxEx.Show("Se encontró el siguiente problema: " + ex.Message, "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Warning); return(false); } }
public VoRespuesta Delete(int Id) { var resultado = _ICliente.Delete(Id); var respuesta = (from DataRow d in resultado.Tables[0].AsEnumerable() select new VoRespuesta { Estatus = Convert.ToBoolean(d.Field <object>("Estatus")), Mensaje = d.Field <string>("Mensaje") }).FirstOrDefault(); return(respuesta); }
public void Delete(Cliente Entity) { _iCliente.Delete(Entity); }