public HoursInDay(E_days day, ClockTime start, ClockTime end) { Day = day; this.Start = start; this.End = end; }
public ClockTime(ClockTime copyCtr) { this.Hours = copyCtr.Hours; this.Minutes = copyCtr.Minutes; }