public CountDisplay(DisplayImpl impl) : base(impl) { }
public IncreaseDisplay(DisplayImpl impl, int step) : base(impl) { this.step = step; }
public Display(DisplayImpl impl) { this.impl = impl; }