/// <summary>
 /// Deprecated Method for adding a new object to the Symbols EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSymbols(Symbol symbol)
 {
     base.AddObject("Symbols", symbol);
 }
 /// <summary>
 /// Create a new Symbol object.
 /// </summary>
 /// <param name="symbolId">Initial value of the SymbolId property.</param>
 /// <param name="symbol1">Initial value of the Symbol1 property.</param>
 /// <param name="fullName">Initial value of the FullName property.</param>
 /// <param name="exchange">Initial value of the Exchange property.</param>
 public static Symbol CreateSymbol(global::System.Int32 symbolId, global::System.String symbol1, global::System.String fullName, global::System.String exchange)
 {
     Symbol symbol = new Symbol();
     symbol.SymbolId = symbolId;
     symbol.Symbol1 = symbol1;
     symbol.FullName = fullName;
     symbol.Exchange = exchange;
     return symbol;
 }