/// <summary> /// Create a new AIRPORT object. /// </summary> /// <param name="sYMBOL">Initial value of the SYMBOL property.</param> /// <param name="cITY_ID">Initial value of the CITY_ID property.</param> /// <param name="nAME">Initial value of the NAME property.</param> public static AIRPORT CreateAIRPORT(global::System.String sYMBOL, global::System.Guid cITY_ID, global::System.String nAME) { AIRPORT aIRPORT = new AIRPORT(); aIRPORT.SYMBOL = sYMBOL; aIRPORT.CITY_ID = cITY_ID; aIRPORT.NAME = nAME; return aIRPORT; }
/// <summary> /// Deprecated Method for adding a new object to the AIRPORT EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToAIRPORT(AIRPORT aIRPORT) { base.AddObject("AIRPORT", aIRPORT); }