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