Example #1
0
 public void AddProducts(NorthwindConsole_32_MJMContext db, Product p)
 {
     db.Products.Add(p);
     this.SaveChanges();
 }
Example #2
0
 public void AddCategory(NorthwindConsole_32_MJMContext db, Category c)
 {
     db.Categories.Add(c);
     this.SaveChanges();
 }