Exemplo n.º 1
0
 public ThumbDownloader(ILogger logger, INicoHttp http, INiconicoUtils niconicoUtils, IPathOrganizer pathOrganizer)
 {
     this._logger        = logger;
     this._http          = http;
     this._niconicoUtils = niconicoUtils;
     this._pathOrganizer = pathOrganizer;
 }
Exemplo n.º 2
0
 public VideoIDHandler(INetworkVideoHandler networkVideoHandler, INiconicoUtils niconicoUtils, ILocalDirectoryHandler localDirectoryHandler, IRemotePlaylistHandler remotePlaylistHandler, ILogger logger, INiconicoUtils utils)
 {
     this._networkVideoHandler   = networkVideoHandler;
     this._niconicoUtils         = niconicoUtils;
     this._localDirectoryHandler = localDirectoryHandler;
     this.remotePlaylistHandler  = remotePlaylistHandler;
     this._logger = logger;
     this._utils  = utils;
 }
Exemplo n.º 3
0
 public PathOrganizer(INiconicoUtils niconicoUtils)
 {
     this.niconicoUtils = niconicoUtils;
 }
Exemplo n.º 4
0
 public LocalDirectoryHandler(ILogger logger, INiconicoUtils niconicoUtils)
 {
     this.logger        = logger;
     this.niconicoUtils = niconicoUtils;
 }
Exemplo n.º 5
0
 public Restore(IDataBase dataBase, ILogger logger, IBackuphandler backuphandler, INiconicoUtils niconicoUtils, IVideoFileStorehandler fileStorehandler, ILocalSettingHandler settingHandler, IVideoDirectoryStoreHandler videoDirectoryStoreHandler)
 {
     this.dataBase                   = dataBase;
     this.logger                     = logger;
     this.backuphandler              = backuphandler;
     this.niconicoUtils              = niconicoUtils;
     this.fileStorehandler           = fileStorehandler;
     this.settingHandler             = settingHandler;
     this.videoDirectoryStoreHandler = videoDirectoryStoreHandler;
 }
Exemplo n.º 6
0
 public SeriesPageHtmlParser(INiconicoUtils niconicoUtils)
 {
     this.niconicoUtils = niconicoUtils;
 }
Exemplo n.º 7
0
 public LocalVideoUtils(INiconicoUtils niconicoUtils, INicoDirectoryIO directoryIO)
 {
     this.niconicoUtils = niconicoUtils;
     this.directoryIO   = directoryIO;
 }
Exemplo n.º 8
0
 public VideoDownloader(ILogger logger, IVideoDownloadHelper videoDownloadHelper, IVideoEncoader encorder, INiconicoUtils utils, IVideoFileStorehandler fileStorehandler, IStreamResumer streamResumer, INicoFileIO fileIO, IPathOrganizer pathOrganizer)
 {
     this._logger = logger;
     this._videoDownloadHelper = videoDownloadHelper;
     this._encorder            = encorder;
     this._utils            = utils;
     this._fileStorehandler = fileStorehandler;
     this._streamResumer    = streamResumer;
     this._fileIO           = fileIO;
     this._pathOrganizer    = pathOrganizer;
 }
Exemplo n.º 9
0
 public ChannelPageHtmlParser(ILogger logger, INiconicoUtils utils, IVideoInfoContainer container)
 {
     this._logger    = logger;
     this._utils     = utils;
     this._container = container;
 }