コード例 #1
0
 public ChargeablePeriod()
 {
     this.longStay = new LongStay();
 }
コード例 #2
0
 public NonChargeablePeriod()
 {
     shortStay = new ShortStay();
 }
コード例 #3
0
 public Visitor(IStay Stay, DateTime StartTime)
 {
     this.Stay      = Stay;
     this.StartTime = StartTime;
 }