private void CargarComboSedesDestino() { try { DataTable dtSedes = new HCSoft.POS.Sucursales().Listar(); new UI().CargarCombo(dtSedes, this.cmbSucursalDestino); } catch (Exception e) { MessageBox.Show("Se ha provocado un error al intentar cagar el combo de sedes", "InformaciĆ³n", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }
private void CargarComboSedes() { try { DataTable datos = new HCSoft.POS.Sucursales().Listar(); //new HCSoft.UI().CargarCombo(datos, this.ComboSede); } catch (Exception e) { new Log(Global.log).GuardaError("error al cargar combo sedes", e); MessageBox.Show("se ha provocado un error al cargar el combo sedes", "InformaciĆ³n", MessageBoxButtons.OK, MessageBoxIcon.Information); } }