Exemplo n.º 1
0
 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;
     }
 }
Exemplo n.º 2
0
 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;
     }
 }