public ProductService(DbContextInMemory context) { _context = context; }
public CategoryService(DbContextInMemory context) { _context = context; }
public ThemeController([FromServices] DbContextInMemory context) { _context = context; }
public LoggingRepository(DbContextInMemory contextApplication) { _context = contextApplication; }