예제 #1
0
 public ShortVisit(DateTime start, DateTime end)
 {
     Start         = start;
     End           = end;
     ChargeRate    = 1.1;
     BusinessHours = new ChargeableHours(8, 0, 18, 0);
 }
 public LongVisit(DateTime start, DateTime end)
 {
     Start         = start;
     End           = end;
     ChargeRate    = 7.5;
     BusinessHours = new ChargeableHours(8, 0, 18, 0);
 }