Exemplo n.º 1
0
 public bool EqualsDate(DayToRun other)
 {
     return(Monday == other.Monday && Tuesday == other.Tuesday && Wednesday == other.Wednesday && Thursday == other.Thursday && Friday == other.Friday && Saturday == other.Saturday && Sunday == other.Sunday);
 }
Exemplo n.º 2
0
 protected bool Equals(DayToRun other)
 {
     return(Id == other.Id && RunMode == other.RunMode && Monday == other.Monday && Tuesday == other.Tuesday && Wednesday == other.Wednesday && Thursday == other.Thursday && Friday == other.Friday && Saturday == other.Saturday && Sunday == other.Sunday);
 }
Exemplo n.º 3
0
 public Schedule()
 {
     DayToRun  = new DayToRun();
     TimeToRun = new List <TimeToRun>();
 }