public Timeslot SetEndTime(DateTime endTime) { ValidateInput(StartTime, endTime); return(Timeslot.Create(StartTime, endTime)); }
public bool OverlapsWith(DateTime startTime, DateTime endTime) { return(this.OverlapsWith(Timeslot.Create(startTime, endTime))); }
public Timeslot SetStartTime(DateTime startTime) { ValidateInput(startTime, EndTime); return(Timeslot.Create(startTime, EndTime)); }