コード例 #1
0
 public MarriageRecord(HumanRecord husband, HumanRecord wife, DateTime recordDate)
     : base(recordDate)
 {
     HusbandRecord = husband;
     WifeRecord    = wife;
     RecordState   = RecordState.Valid;
 }
コード例 #2
0
ファイル: DieRecord.cs プロジェクト: DevMaster2013/Simulation
 public DieRecord(HumanRecord human, DateTime recordDate)
     : base(recordDate)
 {
     RecordState = RecordState.Valid;
     HumanRecord = human;
 }
コード例 #3
0
ファイル: DieRecord.cs プロジェクト: DevMaster2013/Simulation
 public DieRecord(HumanRecord human)
     : base()
 {
     RecordState = RecordState.Valid;
     HumanRecord = human;
 }