Immaginiamo di avere questo modello: 1: public class Person 2: { 3: public string FirstName { get ; set ; } 4: public string LastName { get ; set ; } 5: } 6: 7: public class Student : Person 8: { 9: public string StudentID { get ; set ; } 10: } 11: 12: public class Employee : Person 13: { 14: public string EmployeeID { get ; set ; } 15: } Obiettivo...