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