public BlogRepository(LinkaDbContext context)
 {
     _context = context;
 }
 public ProductRepository(LinkaDbContext context)
 {
     _context = context;
 }
 public AuthRepository(LinkaDbContext context)
 {
     _context = context;
 }
 public AdminRepository(LinkaDbContext context)
 {
     _context = context;
 }
示例#5
0
 public BasketRepository(LinkaDbContext context)
 {
     _context = context;
 }