public InventoryItemRepository(AngelContext context) : base(context)
 {
     this.context = context;
 }
Exemplo n.º 2
0
 public ProductRepository(AngelContext context) : base(context)
 {
     this._context = context;
 }
Exemplo n.º 3
0
 public SaleRepository(AngelContext context) : base(context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 public BarCodeRepository(AngelContext context) : base(context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public BaseRepository(AngelContext context)
 {
     _context = context;
     _dbSet   = context.Set <TEntity>();
 }