public EfReservationsLookup(LibraryDataContext context, IMapper mapper, MapperConfiguration config, IProcessReservations reservationProcessor)
 {
     _context = context;
     _mapper  = mapper;
     _config  = config;
     _reservationProcessor = reservationProcessor;
 }
示例#2
0
 public BooksEfMapper(LibraryDataContext context, IMapper booksAutoMapper, MapperConfiguration mapperConfig)
 {
     Context         = context;
     BooksAutoMapper = booksAutoMapper;
     MapperConfig    = mapperConfig;
 }
 public EfSqlBooksData(LibraryDataContext context, MapperConfiguration config, IMapper mapper)
 {
     _context = context;
     _config  = config;
     _mapper  = mapper;
 }
 public EfLibraryData(LibraryDataContext context, IMapper mapper, MapperConfiguration mapperConfig)
 {
     _context      = context;
     _mapper       = mapper;
     _mapperConfig = mapperConfig;
 }
示例#5
0
 public EfSqlBooks(LibraryDataContext context, IMapper mapper, MapperConfiguration config)
 {
     _context = context;
     _mapper  = mapper;
     _config  = config;
 }