コード例 #1
0
 public Timeslot SetEndTime(DateTime endTime)
 {
     ValidateInput(StartTime, endTime);
     return(Timeslot.Create(StartTime, endTime));
 }
コード例 #2
0
 public bool OverlapsWith(DateTime startTime, DateTime endTime)
 {
     return(this.OverlapsWith(Timeslot.Create(startTime, endTime)));
 }
コード例 #3
0
 public Timeslot SetStartTime(DateTime startTime)
 {
     ValidateInput(startTime, EndTime);
     return(Timeslot.Create(startTime, EndTime));
 }