protected void EliminarButton_Click(object sender, EventArgs e) { //RepositorioBase<Rentas> repositorio = new RepositorioBase<Rentas>(); List <RentasDetalles> lista = (List <RentasDetalles>)ViewState["Detalle"]; Rentas renta = repositorioRenta.Buscar(Utils.ToInt(RentaIDTextBox.Text)); if (IsValid) { if (renta != null) { if (repositorioRenta.Eliminar(renta.RentaId)) { ViewState["Detalle"] = lista; DetalleGridView.DataSource = ViewState["Detalle"]; DetalleGridView.DataBind(); Quitar(); Limpiar(); Utils.MostraMensaje(this, "Eliminado", "Exito", "success"); } else { Utils.MostraMensaje(this, "No se pudo eliminar", "Error", "error"); } } else { Utils.MostraMensaje(this, "No existe", "Error", "error"); } } }
protected void EliminarButton_Click(object sender, EventArgs e) { Renta renta = new Renta(); RentaRepositorio repositorio = new RentaRepositorio(); if (repositorio.Eliminar(Convert.ToInt32(RentaIdTextBox.Text))) { Utils.ShowToastr(this, "Eliminado con exito!!", "Exito", "success"); Limpiar(); } else { Utils.ShowToastr(this, "Fallo al Eliminar", "Exito", "success"); } }