Exemplo n.º 1
0
 public List<Product> GetProducts()
 {
     using (BakeryContext context = new BakeryContext())
     {
         return context.Products.ToList();
     }
 }
Exemplo n.º 2
0
 public Product GetProduct(int id)
 {
     using (BakeryContext context = new BakeryContext())
     {
         return context.Products.Find(id);
     }
 }