Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LastPlaylistModule"/> class.
 /// </summary>
 /// <param name="lastPlaylistRepository">The last playlist repository.</param>
 public LastPlaylistModule(ILastPlaylistRepository lastPlaylistRepository)
 {
     this.LastPlaylistChangeHandler = new LastPlaylistChangeHandler(lastPlaylistRepository);
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LastPlaylistChangeHandler"/> class.
 /// </summary>
 /// <param name="lastPlaylistRepository">The last playlist repository.</param>
 public LastPlaylistChangeHandler(ILastPlaylistRepository lastPlaylistRepository)
 {
     this.lastPlaylistRepository = lastPlaylistRepository;
 }