Esempio n. 1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Colleges EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToColleges(College college)
 {
     base.AddObject("Colleges", college);
 }
Esempio n. 2
0
 /// <summary>
 /// Create a new College object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="address">Initial value of the Address property.</param>
 /// <param name="contact">Initial value of the Contact property.</param>
 /// <param name="uIId">Initial value of the UIId property.</param>
 public static College CreateCollege(global::System.Int32 id, global::System.String name, Address address, ContactInfo contact, global::System.String uIId)
 {
     College college = new College();
     college.Id = id;
     college.Name = name;
     college.Address = StructuralObject.VerifyComplexObjectIsNotNull(address, "Address");
     college.Contact = StructuralObject.VerifyComplexObjectIsNotNull(contact, "Contact");
     college.UIId = uIId;
     return college;
 }