/// <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="id">Initial value of the Id property.</param>
 /// <param name="rowVersion">Initial value of the RowVersion property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="sSN">Initial value of the SSN property.</param>
 public static Person CreatePerson(global::System.Int32 id, global::System.Byte[] rowVersion, global::System.String name, global::System.String sSN)
 {
     Person person = new Person();
     person.Id = id;
     person.RowVersion = rowVersion;
     person.Name = name;
     person.SSN = sSN;
     return person;
 }
 /// <summary>
 /// Create a new Person object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 public static Person CreatePerson(global::System.Int32 id, global::System.String name)
 {
     Person person = new Person();
     person.Id = id;
     person.Name = name;
     return person;
 }