Example #1
0
 public spouse(name n, int i, date d, location m)
 {
     name = n;
     id = i;
     marriageDate = d;
     marriageLocation = m;
 }
Example #2
0
 public residence(date i, date o, location p)
 {
     moveInDate = i;
     moveOutDate = o;
     place = p;
 }