-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListClass.java
More file actions
46 lines (42 loc) · 1.92 KB
/
Copy pathListClass.java
File metadata and controls
46 lines (42 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package ModelClass;
import Models.*;
import java.util.ArrayList;
import java.util.List;
import net.sourceforge.jbarcodebean.JBarcodeBean;
/**
*
* @author AlexJPZ
*/
public class ListClass {
public static Inventario inventario;
public FormatDecimal formato = new FormatDecimal();
public JBarcodeBean barcode = new JBarcodeBean();
public TextFieldEvent evento = new TextFieldEvent();
public Uploadimage imagen = new Uploadimage();
public List<Cajas> listCaja = new ArrayList<>();
public List<Clientes> numCliente = new ArrayList<>();
public List<Categorias> categorias = new ArrayList<>();
public List<Usuarios> listUsuario = new ArrayList<>();
public List<Proveedores> numProveedore = new ArrayList<>();
public List<Proveedores> dataProveedor = new ArrayList<>();
public List<Departamentos> departamento = new ArrayList<>();
public List<Tempo_compras> numTempoCompras = new ArrayList<>();
public List<Reportes_clientes> reportes_clientes = new ArrayList<>();
public List<Reportes_proveedores> reportes_proveedores = new ArrayList<>();
public List<Cajas_ingresos> cajasIngresos = new ArrayList<>();
public List<Compras> compras = new ArrayList<>();
public List<Tempo_productos> tempo_productos = new ArrayList<>();
public List<Productos> productos = new ArrayList<>();
public List<Bodega> bodega = new ArrayList<>();
public List<Tempo_ventas> tempoVentas = new ArrayList<>();
public List<Cajas_ingresos> cajaIngresoInicial = new ArrayList<>();
public List<Cajas_ingresos> cajaIngresoVenta = new ArrayList<>();
public List<Roles> roles = new ArrayList<>();
public List<Cajas_registros> cajas_registros = new ArrayList<>();
public List<Ventas> ventas = new ArrayList<>();
}