/// <summary> /// Deprecated Method for adding a new object to the organization EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToorganization(organization organization) { base.AddObject("organization", organization); }
/// <summary> /// Create a new organization object. /// </summary> /// <param name="id_organization">Initial value of the id_organization property.</param> /// <param name="name">Initial value of the name property.</param> /// <param name="is_deleted">Initial value of the is_deleted property.</param> /// <param name="order_num">Initial value of the order_num property.</param> public static organization Createorganization(global::System.Int32 id_organization, global::System.String name, global::System.Boolean is_deleted, global::System.Int32 order_num) { organization organization = new organization(); organization.id_organization = id_organization; organization.name = name; organization.is_deleted = is_deleted; organization.order_num = order_num; return organization; }