public void CargarCombos() { PlanLogic pl = new PlanLogic(); this.cmbPlanes.DataSource = pl.GetAllForCombo(); this.cmbPlanes.DisplayMember = "Descripcion"; this.cmbPlanes.ValueMember = "ID"; }
private void llenarCombo() { PlanLogic pl = new PlanLogic(); this.cmbPlanes.DataSource = pl.GetAllForCombo(); this.cmbPlanes.DisplayMember = "Descripcion"; this.cmbPlanes.ValueMember = "ID"; }
public AlumnoDesktop() { InitializeComponent(); this.metodoParaControles = new MetodosParaControls(); PlanLogic pl = new PlanLogic(); this.cmbPlan.DataSource = pl.GetAllForCombo(); this.cmbPlan.DisplayMember = "Descripcion"; this.cmbPlan.ValueMember = "Id"; }