using LibraryDTO; using Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Utils; 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(); } } }