Exemplo n.º 1
0
 public IQueryable <Product> GetCommands(Category category, [ScopedService] DbSalesContext context)
 {
     return(context.Products.Where(p => p.IdCategory == category.IdCategory));
 }
Exemplo n.º 2
0
 public IQueryable <Category> GetCategorys([ScopedService] DbSalesContext context)
 {
     return(context.Categories);
 }