private void btn_baja_direccion_Click(object sender, EventArgs e) { var direccion = grillaDireccion.SelectedRows[0].DataBoundItem as Direccion; if (direccion == null) { MessageBox.Show(this, "Error", "No se selecciono dirección a eliminar"); return; } direccionRepository.Delete(direccion); LimpiarCampos(); RefrescarGrillaDireccion(); }
public bool Delete(int id) { return(calle_rep.Delete(id)); }
public void Delete(Direccion entity) { direccionRepository.Delete(entity); }