Exemple #1
0
 public ControlBusyIndicator(IFetchCurrentWindow currentWindowFetcher)
 {
     _indicator = new Lazy <BusyIndicator>(() =>
     {
         var activeWindow = currentWindowFetcher.CurrentWindow;
         return(FindBusyIndicator(activeWindow));
     });
 }
Exemple #2
0
 public CloseCurrentWindow(IFetchCurrentWindow currentWindowFetcher)
 {
     _currentWindowFetcher = currentWindowFetcher;
 }