private List <Usuario> ObtenerListaEmpleados() { try { Usuario DatosAux = new Usuario { Conexion = Comun.Conexion, IDSucursalActual = Comun.IDSucursalCaja, IncluirSelect = true }; Usuario_Negocio UN = new Usuario_Negocio(); return(UN.LlenarComboCatEmpleados(DatosAux)); } catch (Exception ex) { throw ex; } }
private void LlenarComboEmpleadosXIDSucursal() { try { Usuario DatosAux = new Usuario { Conexion = Comun.Conexion, IncluirSelect = true, IDSucursalActual = Comun.IDSucursalCaja }; Usuario_Negocio UN = new Usuario_Negocio(); this.cmbEmpleados.DataSource = UN.LlenarComboCatEmpleados(DatosAux); this.cmbEmpleados.ValueMember = "IDEmpleado"; this.cmbEmpleados.DisplayMember = "Nombre"; } catch (Exception ex) { throw ex; } }