Example #1
0
 public UnitOfWork(FastfoodCenterContext dbcontext)
 {
     _context = dbcontext;
 }
Example #2
0
 public BaseRepository(FastfoodCenterContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }