/// <summary>
 /// Deprecated Method for adding a new object to the Reels EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToReels(Reel reel)
 {
     base.AddObject("Reels", reel);
 }
 /// <summary>
 /// Create a new Reel object.
 /// </summary>
 /// <param name="reelID">Initial value of the ReelID property.</param>
 /// <param name="tag_Id">Initial value of the Tag_Id property.</param>
 /// <param name="wireType">Initial value of the WireType property.</param>
 /// <param name="refrence">Initial value of the Refrence property.</param>
 /// <param name="strandQuality">Initial value of the StrandQuality property.</param>
 /// <param name="status">Initial value of the Status property.</param>
 public static Reel CreateReel(global::System.Int32 reelID, global::System.Int32 tag_Id, global::System.String wireType, global::System.String refrence, global::System.String strandQuality, global::System.Boolean status)
 {
     Reel reel = new Reel();
     reel.ReelID = reelID;
     reel.Tag_Id = tag_Id;
     reel.WireType = wireType;
     reel.Refrence = refrence;
     reel.StrandQuality = strandQuality;
     reel.Status = status;
     return reel;
 }