Is there a better way to set lots of required properties than sending as parameters in a Constructor
- by TooFat
I have a class that in order to do it's job needs to have 8 different property values set.
I want to make sure that all 8 properties are set before trying to execute a method.
I currently have all the parameters passed in and set via the constructor.
Is there a better way to do this?