hi everyone, i'm an asp.net/c# developer and i've been working on this area since 2 years. I recently entered in a new asp.net project where the guy who created the enterprise architecture is quite absent. Because of this situation i'm trying to understand pros n cons of some unusual decision.
Most of all, i noticed that he created a business layer where every object is, at real time, a collection of object.
public class User : List < User > {}
Even I know that I should ask these questions to the one who created this structured, but i'd like to know if someone could tell me the pros of defining an object as collection in business layer.
thanks