/// <summary>
 /// Deprecated Method for adding a new object to the Feeds EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToFeeds(Feeds feeds)
 {
     base.AddObject("Feeds", feeds);
 }
 /// <summary>
 /// Create a new Feeds object.
 /// </summary>
 /// <param name="itemID">Initial value of the ItemID property.</param>
 /// <param name="moduleID">Initial value of the ModuleID property.</param>
 /// <param name="createdDate">Initial value of the CreatedDate property.</param>
 /// <param name="userID">Initial value of the UserID property.</param>
 /// <param name="author">Initial value of the Author property.</param>
 /// <param name="url">Initial value of the Url property.</param>
 /// <param name="rssUrl">Initial value of the RssUrl property.</param>
 public static Feeds CreateFeeds(global::System.Int32 itemID, global::System.Int32 moduleID, global::System.DateTime createdDate, global::System.Int32 userID, global::System.String author, global::System.String url, global::System.String rssUrl)
 {
     Feeds feeds = new Feeds();
     feeds.ItemID = itemID;
     feeds.ModuleID = moduleID;
     feeds.CreatedDate = createdDate;
     feeds.UserID = userID;
     feeds.Author = author;
     feeds.Url = url;
     feeds.RssUrl = rssUrl;
     return feeds;
 }