コード例 #1
0
 public GetBookDetailsQueryHandler(ILibraryContext context, IBookDetailsMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #2
0
 public GetBookDetailsQueryHandlerTests()
 {
     _mapper = new BookDetailsMapper();
     _libraryContextFactory = new InMemoryLibraryContextFactory();
     _libraryContext        = _libraryContextFactory.Create();
 }