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