Hello all DEVPPL, I just had a basic programming question for someone to answer.
My objective is to simply write a small class that can implement methods and such from another class, which is through super class, etc. My main, super class is called customerDatabase, and my subclass is called clients.
However, my main objective has changed, now I want to be able to refer back to an object of type customerDatabase, and be able to look up a value from one of the object's variables, and return it to the user. How would I be able to write this in a form of a method inside of subclass clients, that extends methods, etc., from class customerDatabase?
Thanks for your help in advance!


