cambios menores

This commit is contained in:
carlos
2024-01-23 21:03:31 -06:00
parent cfd142504b
commit 8b4563fa4e
11 changed files with 144 additions and 93 deletions
+10
View File
@@ -36,9 +36,19 @@ namespace compabetov2
InitializeComponent();
getData();
llenarLayout();
llenarComBox();
this.loginPrincipal = loginPrincipal;
}
private void llenarComBox()
{
List<Empleado> empleados = service.conseguirEmpleados();
foreach(Empleado empleado in empleados)
{
responsablecb.Items.Add(empleado.nombre);
}
}
private void llenarLayout()
{
foreach (Producto producto in productos)