Example #1
0
 public PlaylistCreator(IPlaylistFileFactory fileFactory, ILogger logger, IVideoFileStorehandler videoFileStorehandler, INicoFileIO fileIO, INicoDirectoryIO directoryIO, ICurrent current)
 {
     this._fileFactory           = fileFactory;
     this._logger                = logger;
     this._videoFileStorehandler = videoFileStorehandler;
     this._fileIO                = fileIO;
     this._directoryIO           = directoryIO;
     this._current               = current;
 }
Example #2
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;
 }
Example #3
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;
 }