using System; using static System.Collections.Specialized.BitVector32; using System.Numerics; using Utils; using Model; using LibraryDTO; namespace Stub { static class Mapper { internal static Mapper AuthorsMapper { get; } = new Mapper(); internal static Mapper WorksMapper { get; } = new Mapper(); internal static Mapper BooksMapper { get; } = new Mapper(); internal static void Reset() { AuthorsMapper.Reset(); WorksMapper.Reset(); BooksMapper.Reset(); } } }