/// <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(Person person)
 {
     base.AddObject("People", person);
 }
 /// <summary>
 /// Create a new Person object.
 /// </summary>
 /// <param name="personId">Initial value of the PersonId property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 /// <param name="sex">Initial value of the Sex property.</param>
 public static Person CreatePerson(global::System.Int32 personId, global::System.String firstName, global::System.String lastName, global::System.String sex)
 {
     Person person = new Person();
     person.PersonId = personId;
     person.FirstName = firstName;
     person.LastName = lastName;
     person.Sex = sex;
     return person;
 }