Quote:
Hi,
I want to create an object that holds two lists; the lists are holding the same object type and they are being filtered according to an id.
For example:
I have one class called Person which is connect to one table.
The members of the Person class are id,name and sex.
Now I want to create a new object (Lets say Company) that holds two lists one for males and the other for females.
I don't want to define different classes for male and female; I want to be able to do it with the class Person only. Is it possible?
[/code][/quote]