public CustomerRepository(ApiExampleContext ctx, IMemoryCache cache)
 {
     _ctx   = ctx;
     _cache = cache;
 }
 public ProductRepository(ApiExampleContext context)
 {
     _ctx = context;
 }
Exemple #3
0
 public SalesPersonRepository(ApiExampleContext context)
 {
     _ctx = context;
 }