public void CrearReview(Entities.Review Model)
 {
     var context = new ProductosDBContext();
     context.Reviews.Add(Model);
     context.SaveChanges();
 }
 public void EliminarReview(Entities.Review Model)
 {
     var context = new ProductosDBContext();
     context.Reviews.Remove(Model);
     context.SaveChanges();
 }
 public void Crear(Entities.Producto Model)
 {
     var context = new ProductosDBContext();
     context.Productos.Add(Model);
     context.SaveChanges();
 }