public static MotherAddress PhysicalAddress(this Mother mom)
 {
     return(mom.Address(AddressType.Physical));
 }
 public static MotherAddress MailingAddress(this Mother mom)
 {
     return(mom.Address(AddressType.Mailing));
 }