/// <summary>
 /// Initializes a new instance of the <see cref="CachedWebsiteContentReaderRepository"/> class.
 /// </summary>
 /// <param name="WebsiteContentReaderRepository">The Cached Website Content Counter Repository.</param>
 public CachedWebsiteContentReaderRepository(IWebsiteContentReaderRepository WebsiteContentReaderRepository)
 {
     this.WebsiteContentReaderRepository = WebsiteContentReaderRepository;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WebsiteContentReaderController"/> class.
 /// </summary>
 /// <param name="WebsiteContentReaderRepository">The Book Repository.</param>
 public WebsiteContentReaderController(IWebsiteContentReaderRepository WebsiteContentReaderRepository)
 {
     this.WebsiteContentReaderRepository = WebsiteContentReaderRepository;
 }