Пример #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Contacts EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToContacts(Contact contact)
 {
     base.AddObject("Contacts", contact);
 }
Пример #2
0
 /// <summary>
 /// Create a new Contact object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="eMail">Initial value of the eMail property.</param>
 public static Contact CreateContact(global::System.Int32 id, global::System.String eMail)
 {
     Contact contact = new Contact();
     contact.ID = id;
     contact.eMail = eMail;
     return contact;
 }