Beispiel #1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">The GUID of this contact.</param>
 ///<param name="studentPersonalRefId">The GUID of the student whose contact this is.</param>
 ///<param name="name">The name of the contact.  Note: Type attribute value of 04 must be used here.</param>
 ///<param name="contactFlags">A ContactFlags</param>
 ///
 public StudentContact(string refId, string studentPersonalRefId, Name name, ContactFlags contactFlags) : base(Adk.SifVersion, StudentDTD.STUDENTCONTACT)
 {
     this.RefId = refId;
     this.StudentPersonalRefId = studentPersonalRefId;
     this.Name         = name;
     this.ContactFlags = contactFlags;
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">The GUID of this contact.</param>
 ///<param name="studentPersonalRefId">The GUID of the student whose contact this is.</param>
 ///<param name="name">The name of the contact.  Note: Type attribute value of 04 must be used here.</param>
 ///<param name="contactFlags">A ContactFlags</param>
 ///
 public StudentContact( string refId, string studentPersonalRefId, Name name, ContactFlags contactFlags )
     : base(Adk.SifVersion, StudentDTD.STUDENTCONTACT)
 {
     this.RefId = refId;
     this.StudentPersonalRefId = studentPersonalRefId;
     this.Name = name;
     this.ContactFlags = contactFlags;
 }