private void detach_ProductReviews(ProductReview entity)
 {
     this.SendPropertyChanging();
     entity.Product = null;
 }
 private void attach_ProductReviews(ProductReview entity)
 {
     this.SendPropertyChanging();
     entity.Product = this;
 }