public Stairs(Stairs other) { Level = other.Level; Capacity = other.Capacity; EntranceCapacity = other.EntranceCapacity; Delay = other.Delay; }
public StairsPair(ObservableCollection<StairsPair> stairs, StairsPair other) { _stairs = stairs; First = new Stairs(other.First); Second = new Stairs(other.Second); }
public StairsPair(ObservableCollection<StairsPair> stairs, Common.DataModel.StairsPair stairsPair) { _stairs = stairs; First = new Stairs(stairsPair.First); Second = new Stairs(stairsPair.Second); }