Esempio n. 1
0
 public AddExternalModHandler(IDbContextLocator dbContextLocator,
                              IContentInstallationService contentInstallation, IExternalFileDownloader fd,
                              IExternalDownloadStateHandler state)
     : base(dbContextLocator)
 {
     _contentInstallation = contentInstallation;
     _fd    = fd;
     _state = state;
 }
Esempio n. 2
0
 public StartDownloadSessionHandler(IExternalFileDownloader downloader, IDbContextLocator locator)
     : base(locator)
 {
     _downloader = downloader;
 }