// Represents a non-empty List of Accounts...
public class ConsLoA implements ILoA{
    Account first;
    ILoA rest;

    public ConsLoA(Account first, ILoA rest){
        this.first = first;
        this.rest = rest;
    }
    
    /* TEMPLATE
       FIELDS:
       ... this.first ...         --- Account
       ... this.rest ...          --- ILoA

       METHODS:  
			 
       METHODS FOR FIELDS:      

    */

}