Example #1
0
 public void Execute()
 {
     _hottub.On();
     _hottub.setTemperature(104);
     _hottub.Circulate();
 }
 public void Undo()
 {
     _hottub.On();
 }
Example #3
0
 public void Execute()
 {
     _hottub.On();
 }
Example #4
0
 public void Execute()
 {
     hottub.On();
     hottub.Temperature(104);
     hottub.Circulate();
 }
 public void Execute()
 {
     _hottub.On();
     _hottub.Heat();
     _hottub.BubblesOn();
 }
 public void execute()
 {
     hottub.On();
     hottub.heat();
     hottub.bubblesOn();
 }
 public void undo()
 {
     hottub.On();
     hottub.heat();
     hottub.Off();
 }
Example #8
0
 public void Execute(object parameter)
 {
     _hottub.On();
 }
Example #9
0
 public void Undo() => _hottub.On();
Example #10
0
 public void Execute()
 {
     hottub.On();
     hottub.SetBubbles();
 }