public BookAppService(
     IBookCache bookCache,
     IRepository <Book> bookRepository,
     ICatalogCache catalogCache,
     IAuthorCache authorCache,
     ITagCache tagCache)
 {
     _bookCache      = bookCache;
     _bookRepository = bookRepository;
     _catalogCache   = catalogCache;
     _authorCache    = authorCache;
     _tagCache       = tagCache;
 }
Ejemplo n.º 2
0
 public AftermarketProvider(string certPath, string certPwd, ICatalogCache cache, string locale)
     : base(certPath, certPwd, cache, locale)
 {
 }
Ejemplo n.º 3
0
 public CatalogProvider(string certPath, string certPwd, ICatalogCache cache)
     : base(certPath, certPwd, cache)
 {
 }
 public CachedCatalogService(ICatalogService catalog,
                             ICatalogCache cache)
 {
     this.catalog = catalog;
     this.cache   = cache;
 }