Exemplo n.º 1
0
 private void CargarComboEmpleados()
 {
     try
     {
         Usuario DatosAux = new Usuario {
             IncluirSelect = true, Conexion = Comun.Conexion, IDSucursalActual = Comun.IDSucursalCaja
         };
         Usuario_Negocio UN = new Usuario_Negocio();
         this.cmbEmpleados.DisplayMember = "Nombre";
         this.cmbEmpleados.ValueMember   = "IDEmpleado";
         this.cmbEmpleados.DataSource    = UN.LlenarComboCatEmpleadosPedidos(DatosAux);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }