public void AddProduct(Product p)
 {
     dbContext.Add(p);
     dbContext.SaveChanges();
 }