private void PowerSwitch()
 {
     if (IsPowerOn)
     {
         OutputService.On();
     }
     else
     {
         OutputService.Off();
     }
 }