private void CargarDatos() { estado = EstadoBL.BuscarPorId(_idEstado); if (estado.Id > 0) { txtNombreEstado.Text = estado.Nombre; } else { MessageBox.Show("Ocurrio un problema al intentar cargar datos"); this.Close(); } }