Задача от домашно по ООП
Define a class Person that has name, age and email. The name and age are mandatory. The email is optional. Define properties that accept non-empty name and age in the range [1 ... 100]. In case of invalid arguments, throw an exception. Define a property for the email that accepts either null or non-empty string containing '@'. Define two constructors. The first constructor should take name, age and email. The second constructor should take name and age only and call the first constructor. Implement the ToString() method to enable printing persons at the console.
Това ми е решението
Опитвам се да гледам лекциите по ООП на C# и след това се мъча на Java :D
Искам да попитам това решението коректно ли е , понеже няма тестове или примери и не знам така ли трябва да се държи програмата.
Мерси.