Esempio n. 1
0
 public ProductService(DbContextInMemory context)
 {
     _context = context;
 }
Esempio n. 2
0
 public CategoryService(DbContextInMemory context)
 {
     _context = context;
 }
Esempio n. 3
0
 public ThemeController([FromServices] DbContextInMemory context)
 {
     _context = context;
 }
Esempio n. 4
0
 public LoggingRepository(DbContextInMemory contextApplication)
 {
     _context = contextApplication;
 }