Beispiel #1
0
 private void LlenarComboEmpleado()
 {
     try
     {
         Usuario Datos = new Usuario()
         {
             Conexion = Comun.Conexion, IDSucursalActual = this._DatosSucursal.IDSucursal, IncluirSelect = true
         };
         Catalogo_Negocio cn = new Catalogo_Negocio();
         this.cmbEmpleadoSucursal.DataSource    = cn.ObtenerComboCatEmpleado(Datos);
         this.cmbEmpleadoSucursal.ValueMember   = "IDEmpleado";
         this.cmbEmpleadoSucursal.DisplayMember = "Nombre";
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }