Hi,
I have to create a lot of objects which relate to each (i.e. one is passed in as a parameter of the constructor to the other) to do some work.
Usually factory type patterns seem suitable for making only one object. This is several. I was thinking of doing something like a fluent interface and then the properties on the class are the final objects, or use the specification design pattern. Is there any other better way?
Thanks