Esempio n. 1
0
 public BaseRepository(EightBallDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
     Entities = _context.Set <TEntity>();
 }
Esempio n. 2
0
 public ReservationRepository(EightBallDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Esempio n. 3
0
 public TableRepository(EightBallDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public AppointmentRepository(EightBallDbContext context, IMapper mapper) : base(context, mapper)
 {
 }