Use abstract static member, add publish script

This commit is contained in:
Michael Bucari-Tovo 2022-06-25 16:48:23 -06:00
parent 1668b7c9a1
commit d48a74912a
20 changed files with 66 additions and 84 deletions

View file

@ -8,10 +8,8 @@ using Dinah.Core.Collections.Generic;
namespace DtoImporterService
{
public class BookImporter : ItemsImporterBase
public class BookImporter : ImporterBase<BookValidator>
{
protected override IValidator Validator => new BookValidator();
public Dictionary<string, Book> Cache { get; private set; } = new();
private ContributorImporter contributorImporter { get; }