Exemplo n.º 1
0
 public Stairs(Stairs other)
 {
     Level = other.Level;
     Capacity = other.Capacity;
     EntranceCapacity = other.EntranceCapacity;
     Delay = other.Delay;
 }
Exemplo n.º 2
0
 public StairsPair(ObservableCollection<StairsPair> stairs, StairsPair other)
 {
     _stairs = stairs;
     First = new Stairs(other.First);
     Second = new Stairs(other.Second);
 }
Exemplo n.º 3
0
 public StairsPair(ObservableCollection<StairsPair> stairs, Common.DataModel.StairsPair stairsPair)
 {
     _stairs = stairs;
     First = new Stairs(stairsPair.First);
     Second = new Stairs(stairsPair.Second);
 }