Пример #1
0
 public AppUpdateChecker(IAppSettings appSettings, IWebClientProxy webClient, IUserSettings userSettings, IAppInfo appInfo)
 {
     this.appSettings  = appSettings;
     this.appInfo      = appInfo;
     this.userSettings = userSettings;
     this.webClient    = webClient;
 }
Пример #2
0
 public MatchExpression(IAppLog appLog, IWebClientProxy webClient, IPageParser parser) : base(appLog, webClient)
 {
     this.parser = parser;
 }
Пример #3
0
 public NasaApiClient(IWebClientProxy webClientProxy, IMarsRoverUtils marsRoverUtils)
 {
     _marsRoverUtils = marsRoverUtils;
     _webClientProxy = webClientProxy;
 }
Пример #4
0
 protected BaseWebExpression(IAppLog appLog, IWebClientProxy webClient) : base(appLog)
 {
     this.webClient = webClient;
 }
Пример #5
0
 public PeekExpression(IAppLog appLog, IWebClientProxy webClient, IPageParser parser, IAppController appController) : base(appLog, webClient)
 {
     this.parser        = parser;
     this.appController = appController;
 }
Пример #6
0
 public DownloadExpression(IAppLog appLog, IPageParser parser, IAppController appController, IFileDownloader downloader, IComicPath comicPath, IFileProxy file, IWebClientProxy webClient, IAppSettings appSettings, IComicStore comicStore)
     : base(appLog, webClient)
 {
     this.parser        = parser;
     this.comicStore    = comicStore;
     this.appSettings   = appSettings;
     this.file          = file;
     this.comicPath     = comicPath;
     this.downloader    = downloader;
     this.appController = appController;
 }
Пример #7
0
 public GoToExpression(IAppLog appLog, IWebClientProxy webClient, IAppController appController) : base(appLog)
 {
     this.appController = appController;
     this.webClient     = webClient;
 }
 public RadioEtherInternetImpl(IWebClientProxy webClient)
 {
     this.webClient = webClient;
 }
Пример #9
0
 public FileDownloader(IWebClientProxy webClient, IDirectoryProxy directory, IFileProxy file)
 {
     this.webClient = webClient;
     this.file      = file;
     this.directory = directory;
 }