Exemplo n.º 1
0
 public TicketRepository(TheaterTicketBoxContext context) : base(context)
 {
 }
Exemplo n.º 2
0
 public UnitOfWork()
 {
     _context = new TheaterTicketBoxContext();
 }
Exemplo n.º 3
0
 public PerformanceRepository(TheaterTicketBoxContext context) : base(context)
 {
 }
Exemplo n.º 4
0
 public GenericRepository(TheaterTicketBoxContext context)
 {
     this._context = context;
     _dbSet        = context.Set <TEntity>();
 }