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