Ejemplo n.º 1
0
 public WatcherViewModel(WatcherService service, WatcherSettings settings)
 {
     this.Service = service;
     this.Settings = settings;
     this.Settings.PropertyChanged += this.OnSettingsChanged;
     this.ApplySettings();
 }
Ejemplo n.º 2
0
 public WatcherModule(IApplicationRoot application, WatcherService service)
 {
     this.application = application;
     this.service = service;
 }