public ConfigurationRepository(ApplicationMemoryContext context)
 {
     _memoryContext = context;
 }
Esempio n. 2
0
 public ProductRepository(ApplicationDbContext dbContext, ApplicationMemoryContext memoryContext)
 {
     _dbContext     = dbContext;
     _memoryContext = memoryContext;
 }