public ItemsController(CustomerAPIContext context)
 {
     _context = context;
 }
 public CustomersController(CustomerAPIContext context, IMemoryCache memoryCache)
 {
     _context     = context;
     _memoryCache = memoryCache;
 }
Exemplo n.º 3
0
 public InMemoryCustomerRepository(CustomerAPIContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public CustomerRepo(CustomerAPIContext context)
 {
     _context = context;
 }