Exemplo n.º 1
0
 public Category GetCategory(int id)
 {
     using var ctx = new NorthwindContex();
     return(ctx.Categories.Find(id));
 }
Exemplo n.º 2
0
 public IList <Category> GetCategories()
 {
     using var ctx = new NorthwindContex();
     return(ctx.Categories.ToList());
 }