Exemplo n.º 1
0
        public UlrichsImport(UlrichsClient ulrichsClient, UlrichsCache ulrichsCache)
        {
            Requires.NotNull(ulrichsClient, "ulrichsClient");
            Requires.NotNull(ulrichsCache, "ulrichsCache");

            this.ulrichsClient = ulrichsClient;
            this.ulrichsCache = ulrichsCache;
        }
Exemplo n.º 2
0
        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;
        }
Exemplo n.º 3
0
        public UlrichsImport(UlrichsClient ulrichsClient, UlrichsCache ulrichsCache)
        {
            Requires.NotNull(ulrichsClient, "ulrichsClient");
            Requires.NotNull(ulrichsCache, "ulrichsCache");

            this.ulrichsClient = ulrichsClient;
            this.ulrichsCache  = ulrichsCache;
        }
Exemplo n.º 4
0
        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;
        }