Beispiel #1
0
 public void AddShift(Shift shift)
 {
     this.Shifts.Add(shift);
 }
Beispiel #2
0
 public Schedule(Shift shift)
 {
     this.Shifts = new List <Shift>();
     this.Shifts.Add(shift);
 }