G
Guest
This is a software design question. What is the best way to design an object, such as a person, that will have a lot of methods and properties
Option 1. All methods and properties in the person object
Option 2. All properties in the person object and the methods are stored in a person handler object that takes a person and acts on it
Option 3. All properties in the person object and the methods are stored in a static person handler object that takes a person and acts on it
Or another option
Option 1. All methods and properties in the person object
Option 2. All properties in the person object and the methods are stored in a person handler object that takes a person and acts on it
Option 3. All properties in the person object and the methods are stored in a static person handler object that takes a person and acts on it
Or another option