private void NotifyServices(IEnumerable <ExposedService> services, ExposedServiceState state)
 {
     foreach (var exposedService in services)
     {
         exposedService.State = state;
         _watcher.WatchEventRaised(exposedService);
     }
 }