/// <summary> /// Deprecated Method for adding a new object to the Stocks EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToStocks(Stock stock) { base.AddObject("Stocks", stock); }
/// <summary> /// Create a new Stock object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="title">Initial value of the Title property.</param> public static Stock CreateStock(global::System.Int32 id, global::System.String title) { Stock stock = new Stock(); stock.Id = id; stock.Title = title; return stock; }