/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="studentPersonalRefId">GUID that identifies the student for the relationship.</param> ///<param name="studentContactPersonalRefId">GUID that identifies the contact person for the relationship.</param> ///<param name="relationship">The relationship of the contact person to the student</param> ///<param name="contactFlags">Contains Yes/No characteristics of the contact person's role. Provide a Yes value for all that apply. At least one of the child elements of ContactFlags must have a Yes value.</param> /// public StudentContactRelationship( string studentPersonalRefId, string studentContactPersonalRefId, Relationship relationship, ContactFlags contactFlags ) : base(Adk.SifVersion, StudentDTD.STUDENTCONTACTRELATIONSHIP) { this.StudentPersonalRefId = studentPersonalRefId; this.StudentContactPersonalRefId = studentContactPersonalRefId; this.Relationship = relationship; this.ContactFlags = contactFlags; }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="studentPersonalRefId">GUID that identifies the student for the relationship.</param> ///<param name="studentContactPersonalRefId">GUID that identifies the contact person for the relationship.</param> ///<param name="relationship">The relationship of the contact person to the student</param> ///<param name="contactFlags">Contains Yes/No characteristics of the contact person's role. Provide a Yes value for all that apply. At least one of the child elements of ContactFlags must have a Yes value.</param> /// public StudentContactRelationship(string studentPersonalRefId, string studentContactPersonalRefId, Relationship relationship, ContactFlags contactFlags) : base(Adk.SifVersion, StudentDTD.STUDENTCONTACTRELATIONSHIP) { this.StudentPersonalRefId = studentPersonalRefId; this.StudentContactPersonalRefId = studentContactPersonalRefId; this.Relationship = relationship; this.ContactFlags = contactFlags; }