Esempio n. 1
0
 public MarriageRecord(HumanRecord husband, HumanRecord wife, DateTime recordDate)
     : base(recordDate)
 {
     HusbandRecord = husband;
     WifeRecord    = wife;
     RecordState   = RecordState.Valid;
 }
Esempio n. 2
0
 public DieRecord(HumanRecord human, DateTime recordDate)
     : base(recordDate)
 {
     RecordState = RecordState.Valid;
     HumanRecord = human;
 }
Esempio n. 3
0
 public DieRecord(HumanRecord human)
     : base()
 {
     RecordState = RecordState.Valid;
     HumanRecord = human;
 }