Exemplo n.º 1
0
 public SourcesRepository(
     ISourceContext context,
     EntityFactory factory,
     IUriTemplateMatcher matcher)
 {
     this.context = context;
     this.factory = factory;
     this.matcher = matcher;
 }
Exemplo n.º 2
0
 public PdfService(
     IFileStorage fileStorage,
     IStorageQueue queue,
     IWishlistPersistence wishlistPersistence,
     IUriTemplateMatcher matcher)
 {
     this.fileStorage         = fileStorage;
     this.queue               = queue;
     this.wishlistPersistence = wishlistPersistence;
     this.matcher             = matcher;
 }
Exemplo n.º 3
0
 public ExtractPages(
     ISourcesRepository sources,
     ISourceImageService imageService,
     IUriTemplateMatcher matcher,
     ISourceContext sourcesContext,
     ISourcesPersistence persistence)
 {
     this.sources        = sources;
     this.imageService   = imageService;
     this.matcher        = matcher;
     this.sourcesContext = sourcesContext;
     this.persistence    = persistence;
     this.Client         = new HttpClient();
 }
Exemplo n.º 4
0
 public SourcesPersistence(ISourceContext context, IUriTemplateMatcher matcher, IUriTemplateExpander expander)
 {
     this.context  = context;
     this.matcher  = matcher;
     this.expander = expander;
 }