public Client()
        {
            Conveyer cv = new Conveyer();

            cv.AddOutPut(0);
            cv.AddOutPut(5);
            cv.AddOutPut(30);
            cv.AddOutPut(55);
            cv.AddOutPut(120);
        }
 public Normal(int currentOutput, Conveyer conveyer)
 {
     this._currentOutput = currentOutput;
     this.Conveyer       = conveyer;
     Initialize();
 }
        public High(int currentOutput, Conveyer conveyer)
        {
            this.CurrentOutput = currentOutput;

            Initialize();
        }