The system needs a list of Salesmen (Arraylist named SalesmenList) and each Salesmen holds a numbers of various attributes
<Salesmen_id, Region, and Total_sales>.
There is also a class named Products. The class holds the <Product_ID, Description and Price>
So, how am I going to implement the use of Arraylists to point the Products in the product class to Salesmen class so that i can usethe information in the product class to compute totalsales by Salesmen ID, individually?