예제 #1
0
 /// <summary>
 /// Execute the assigned <see cref="T:CarWash.Models.Interfaces.ICarWashProgram"/> instance.
 /// </summary>
 public void Execute()
 {
     this._washHandler.WashProgram.Execute();
     this._washHandler = null;
 }
예제 #2
0
 /// <summary>
 /// Cancel the current <see cref="T:CarWash.Models.Interfaces.ICarWashProgram"/> execution.
 /// </summary>
 public void Cancel()
 {
     this._washHandler.WashProgram.Cancel();
     this._washHandler = null;
 }