public BusinessPerson(Person p) { this.FirstName = p.FirstName; this.LastName = p.LastName; this.NationalId = p.NationalId; SetupDirectives(); }
public void TestInit() { p1 = new Person { NationalId = "801-89-7744", FirstName = "Roger", LastName = "Green" }; }