protected Customer removeFromQueue() { return (Customer) q.removeFromFront(); }
protected void insertAtHeadOfQueue(Customer e) { q.insertAtFront(e); }
protected Customer headOfQueue() { return (Customer) q.first(); }
protected void insertIntoQueue(Customer e) { q.insertAtFront(e); }