/// <summary> /// Deprecated Method for adding a new object to the ContactLists EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToContactLists(ContactList contactList) { base.AddObject("ContactLists", contactList); }
/// <summary> /// Create a new ContactList object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="isPrivate">Initial value of the IsPrivate property.</param> /// <param name="isActive">Initial value of the IsActive property.</param> /// <param name="lastModified">Initial value of the LastModified property.</param> /// <param name="dateCreated">Initial value of the DateCreated property.</param> public static ContactList CreateContactList(global::System.Int32 id, global::System.String name, global::System.Boolean isPrivate, global::System.Boolean isActive, global::System.DateTime lastModified, global::System.DateTime dateCreated) { ContactList contactList = new ContactList(); contactList.Id = id; contactList.Name = name; contactList.IsPrivate = isPrivate; contactList.IsActive = isActive; contactList.LastModified = lastModified; contactList.DateCreated = dateCreated; return contactList; }