public CustomerRepository(ApiExampleContext ctx, IMemoryCache cache)
 {
     _ctx   = ctx;
     _cache = cache;
 }
 public ProductRepository(ApiExampleContext context)
 {
     _ctx = context;
 }
Exemplo n.º 3
0
 public SalesPersonRepository(ApiExampleContext context)
 {
     _ctx = context;
 }