/// <summary>
 /// Deprecated Method for adding a new object to the bvc_ProductReview EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTobvc_ProductReview(bvc_ProductReview bvc_ProductReview)
 {
     base.AddObject("bvc_ProductReview", bvc_ProductReview);
 }
 /// <summary>
 /// Create a new bvc_ProductReview object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="userID">Initial value of the UserID property.</param>
 /// <param name="productID">Initial value of the ProductID property.</param>
 /// <param name="reviewDate">Initial value of the ReviewDate property.</param>
 /// <param name="rating">Initial value of the Rating property.</param>
 /// <param name="karma">Initial value of the Karma property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 /// <param name="approved">Initial value of the Approved property.</param>
 public static bvc_ProductReview Createbvc_ProductReview(global::System.Int32 id, global::System.Int32 userID, global::System.String productID, global::System.DateTime reviewDate, global::System.Int32 rating, global::System.Int32 karma, global::System.String description, global::System.Int32 approved)
 {
     bvc_ProductReview bvc_ProductReview = new bvc_ProductReview();
     bvc_ProductReview.ID = id;
     bvc_ProductReview.UserID = userID;
     bvc_ProductReview.ProductID = productID;
     bvc_ProductReview.ReviewDate = reviewDate;
     bvc_ProductReview.Rating = rating;
     bvc_ProductReview.Karma = karma;
     bvc_ProductReview.Description = description;
     bvc_ProductReview.Approved = approved;
     return bvc_ProductReview;
 }