protected TableInheritanceDemoDBChangeSet(TableInheritanceDemoDBChangeSet changeSet)
 {
     this.People        = changeSet.People;
     this.Addresses     = changeSet.Addresses;
     this.Demographics  = changeSet.Demographics;
     this.EmployeeRoles = changeSet.EmployeeRoles;
 }
 public TableInheritanceDemoDBResultSet(TableInheritanceDemoDBChangeSet changeSet)
     : base(changeSet)
 {
 }