public void Stop_NonWhitelistedService_ExceptionThrown()
 {
     // Act
     _ntServiceBridge.Stop(NON_WHITELISTED_SERVICE);
 }
 private async void StopButton_Click(object sender, RoutedEventArgs e)
 {
     var service = ServiceName.Text;
     await base.RunAPIInBackground(() => { _ntServiceBridge.Stop(service); });
 }