Newer
Older
POS_for_GUI_tests / src / resources / CustomersModel.java
package resources;

import java.util.ArrayList;
import java.util.HashMap;

import javax.swing.table.DefaultTableModel;

//-------------------------------------------------------------------------
//
public class CustomersModel {
	private ArrayList<Customer> customers;

	// -------------------------------------------------------------------------
	// -------------------------------------------------------------------------
	// constructor
	// -------------------------------------------------------------------------
	//
	public CustomersModel() {
		customers = new ArrayList<>();
	}

	// -------------------------------------------------------------------------
	// -------------------------------------------------------------------------
	// public
	// -------------------------------------------------------------------------
	//
	public ArrayList<Customer> getCustomers() {
		return this.customers;
	}
}