In generic terms, i have a class named 'Client' with read/write properties of 'ID', 'Alias', and 'Plan'. The main issue i'm running into right now is how to handle the 'Plan' property; each client can have no less than 1, but up to a maximum of 15 plans. Ideally, i would like to treat the property 'Plan' like a collection in which i could add, remove, and count items.
I'm currently using a collection (Clients) to manage each instance of the class 'Client', but need a way to give each 'Client' a dynamic number of plans...any help or direction would be greatly appreciated.
I'm currently using a collection (Clients) to manage each instance of the class 'Client', but need a way to give each 'Client' a dynamic number of plans...any help or direction would be greatly appreciated.