How should I organize my C# classes? [closed]
- by oscar.fimbres
I'm creating an email generator system. I'm creating some clases and I'm trying to make things right.
By the time, I have created 5 classes. Look at the class diagram:
I'm going to explain you each one.
Person. It's not a big deal. Just have two constructors: Person(fname, lname1, lname2) and Person(token, fname, lname1, lname2). Note that…