public UlrichsImport(UlrichsClient ulrichsClient, UlrichsCache ulrichsCache) { Requires.NotNull(ulrichsClient, "ulrichsClient"); Requires.NotNull(ulrichsCache, "ulrichsCache"); this.ulrichsClient = ulrichsClient; this.ulrichsCache = ulrichsCache; }
public UlrichsImport(UlrichsClient ulrichsClient, UlrichsCache ulrichsCache, IBlockedISSNRepository blockedIssnRepository) : base(blockedIssnRepository) { Requires.NotNull(ulrichsClient, nameof(ulrichsClient)); Requires.NotNull(ulrichsCache, nameof(ulrichsCache)); this.ulrichsClient = ulrichsClient; this.ulrichsCache = ulrichsCache; }