Ejemplo n.º 1
0
 public void Update(Product product)
 {
     if (product != null)
     {
         Context.Entry(product).State = EntityState.Modified;
     }
 }
Ejemplo n.º 2
0
 public void Create(Product product)
 {
     if (product != null)
     {
         Context.Products.Add(product);
     }
 }