예제 #1
0
 /// <summary>
 /// Create a new PersonData object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 public static PersonData CreatePersonData(global::System.Int32 id, global::System.String firstName, global::System.String lastName)
 {
     PersonData personData = new PersonData();
     personData.Id = id;
     personData.FirstName = firstName;
     personData.LastName = lastName;
     return personData;
 }
예제 #2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the People EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPeople(PersonData personData)
 {
     base.AddObject("People", personData);
 }