Exemple #1
0
 public UserRepository(LamazonDbContext context) : base(context)
 {
 }
Exemple #2
0
 public BaseRepository(LamazonDbContext db)
 {
     _db = db;
 }
 public ProductRepository(LamazonDbContext context) : base(context)
 {
 }
Exemple #4
0
 public BaseRepository(LamazonDbContext context)
 {
     _context = context;
 }
Exemple #5
0
 public InvoiceRepository(LamazonDbContext context) : base(context)
 {
 }
Exemple #6
0
 public InvoiceRepository(LamazonDbContext db) : base(db)
 {
 }
Exemple #7
0
 public UserRepository(LamazonDbContext db) : base(db)
 {
 }
 public ProductRepository(LamazonDbContext db)
     : base(db)
 {
 }