コード例 #1
0
 public VideoListRefresher(IPlaylistStoreHandler playlistStoreHandler, IVideoHandler videoHandler, ILocalVideoUtils localVideoUtils, IVideoThumnailUtility videoThumnailUtility, ICurrent current, ILightVideoListinfoHandler lightVideoListinfoHandler, ILocalSettingsContainer container)
 {
     this._playlistStoreHandler = playlistStoreHandler;
     this._videoHandler         = videoHandler;
     this._current = current;
     this._videoThumnailUtility      = videoThumnailUtility;
     this._localVideoUtils           = localVideoUtils;
     this._lightVideoListinfoHandler = lightVideoListinfoHandler;
     this._settingsContainer         = container;
 }
コード例 #2
0
 public PlaylistHandler(IPlaylistTreeHandler handler, IPlaylistStoreHandler playlistStoreHandler, ILocalSettingHandler settingHandler, ILogger logger, IVideoPlaylistConverter converter, IVideoStoreHandler videoStoreHandler, IPlaylistInfoContainer playlistInfoContainer, IVideoInfoContainer videoInfoContainer)
 {
     this._treeHandler          = handler;
     this._playlistStoreHandler = playlistStoreHandler;
     this._settingHandler       = settingHandler;
     this._logger                = logger;
     this._converter             = converter;
     this._videoStoreHandler     = videoStoreHandler;
     this._playlistInfoContainer = playlistInfoContainer;
     this._videoInfoContainer    = videoInfoContainer;
 }
コード例 #3
0
 public VideoPlaylistConverter(IVideoInfoContainer container, IPlaylistStoreHandler playlistStoreHandler, IPlaylistInfoContainer playlistInfoContainer)
 {
     this._container             = container;
     this._playlistStoreHandler  = playlistStoreHandler;
     this._playlistInfoContainer = playlistInfoContainer;
 }