예제 #1
0
 /// <summary>
 /// Create a new Person object.
 /// </summary>
 /// <param name="businessEntityID">Initial value of the BusinessEntityID property.</param>
 /// <param name="personType">Initial value of the PersonType property.</param>
 /// <param name="nameStyle">Initial value of the NameStyle property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 /// <param name="emailPromotion">Initial value of the EmailPromotion property.</param>
 /// <param name="rowguid">Initial value of the rowguid property.</param>
 /// <param name="modifiedDate">Initial value of the ModifiedDate property.</param>
 public static Person CreatePerson(global::System.Int32 businessEntityID, global::System.String personType, global::System.Boolean nameStyle, global::System.String firstName, global::System.String lastName, global::System.Int32 emailPromotion, global::System.Guid rowguid, global::System.DateTime modifiedDate)
 {
     Person person = new Person();
     person.BusinessEntityID = businessEntityID;
     person.PersonType = personType;
     person.NameStyle = nameStyle;
     person.FirstName = firstName;
     person.LastName = lastName;
     person.EmailPromotion = emailPromotion;
     person.rowguid = rowguid;
     person.ModifiedDate = modifiedDate;
     return person;
 }
예제 #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(Person person)
 {
     base.AddObject("People", person);
 }