Inheritance: ICommandLonely
 public void Accept(Stop command)
 {
     _builder.AppendLine("stop");
 }
 public void Accept(Stop command)
 {
     _isEqual = true;
 }
Example #3
0
        public void Accept(Stop command)
        {
            if (!_conditions.Peek()) return;

            _stop = true;
        }
Example #4
0
 public void Accept(Stop command)
 {
     _stop = true;
 }