Example #1
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;
 }
Example #2
0
 public MainPresenter(IAppController appController, IUiThread uiThread, IComicStore comicStore, IAppLog appLog, IComicViewModelMapper mapper, IComicPath comicPath, IDirectoryProxy directory, IUserSettings settings, IAppInfo appInfo, IAppSettings appSettings)
 {
     this.appController = appController;
     this.appSettings   = appSettings;
     this.appInfo       = appInfo;
     this.settings      = settings;
     this.directory     = directory;
     this.comicPath     = comicPath;
     this.mapper        = mapper;
     this.appLog        = appLog;
     this.comicStore    = comicStore;
     this.uiThread      = uiThread;
 }
Example #3
0
 public DownloadFinishedHandler(IAppController appController, IComicStore comicStore)
 {
     this.appController = appController;
     this.comicStore    = comicStore;
 }
Example #4
0
 public ComicPath(IUserSettings userSettings, IComicStore comicStore, IDirectoryProxy directory)
 {
     this.userSettings = userSettings;
     this.directory    = directory;
     this.comicStore   = comicStore;
 }
Example #5
0
 public DownloadSupervisor(IComicStore comicStore)
 {
     this.comicStore = comicStore;
 }
Example #6
0
 public ComicAutoPersister(IComicStore comicStore)
 {
     this.comicStore = comicStore;
 }
Example #7
0
 public ComicsPresenter(IComicStore comicStore, IAppController appController)
 {
     this.comicStore    = comicStore;
     this.appController = appController;
 }
 public CurrentPageChangedHandler(IComicStore comicStore, IAppController appController)
 {
     this.comicStore    = comicStore;
     this.appController = appController;
 }
Example #9
0
 public StripDownloadedHandler(IComicStore comicStore, IAppController appController)
 {
     this.comicStore    = comicStore;
     this.appController = appController;
 }