Example #1
0
 public CustomerRepository(SovosContext context)
     : base(context)
 {
 }
Example #2
0
 public ProductRepository(SovosContext context)
     : base(context)
 {
 }
Example #3
0
 public Repository(SovosContext context)
 {
     _context = context;
     _dbSet   = _context.Set <T>();
 }
Example #4
0
 public OrderRepository(SovosContext context)
     : base(context)
 {
 }