/// <summary> /// Deprecated Method for adding a new object to the Organizations EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToOrganizations(Organization organization) { base.AddObject("Organizations", organization); }
/// <summary> /// Create a new Organization object. /// </summary> /// <param name="organizationID">Initial value of the OrganizationID property.</param> /// <param name="organizationName">Initial value of the OrganizationName property.</param> public static Organization CreateOrganization(global::System.Int32 organizationID, global::System.String organizationName) { Organization organization = new Organization(); organization.OrganizationID = organizationID; organization.OrganizationName = organizationName; return organization; }