private void CargarCargos(bool Seleccione = true) { var lstCargos = new LN.Cargo().ListarCombo(); if (Seleccione == true) { lstCargos.Insert(0, new BE.UI.Cargo() { Id = 0, Nombre = "Seleccione", Descripcion = "" }); } this.cboCargo.DataSource = lstCargos; this.cboCargo.DisplayMember = "Nombre"; this.cboCargo.ValueMember = "Id"; }
private void CargarCargos(bool Seleccione = false) { var lstUiCargos = new LN.Cargo().ListarCombo(); lstUiCargos = lstUiCargos.OrderBy(o => o.Nombre).Distinct().ToList(); if (Seleccione == true) { lstUiCargos.Insert(0, new BE.UI.Cargo() { Id = 0, Nombre = "Seleccione", Descripcion = "" }); } this.CboCargo.DataSource = lstUiCargos; this.CboCargo.DisplayMember = "Nombre"; this.CboCargo.ValueMember = "Id"; }