Ejemplo n.º 1
0
        void CargarEmpleados()
        {
            try
            {
                EmpleadoServicio empleadoServicio = new EmpleadoServicio();
                List <Empleado>  listaempleado    = empleadoServicio.TraerEmpleados();

                this.comboLiquidaciones.DataSource    = listaempleado;
                this.comboLiquidaciones.DisplayMember = "CUIL";
                this.comboLiquidaciones.ValueMember   = "Id";
            }
            catch (Exception ex)
            {
                MessageBox.Show("Ha ocurrido un error al cargar las liquidaciones");
                this.Close();
            }
        }