Example #1
0
 public GenericRepository(RegisterAppContext context)
 {
     _context = context;
     table    = _context.Set <T>();
 }
Example #2
0
 public UnitOfWork(RegisterAppContext context)
 {
     this.context = context;
 }
Example #3
0
 public CustomerRepository(RegisterAppContext ctx) : base(ctx)
 {
 }