/// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">The ID (GUID) that uniquely identifies the instance of the object.</param>
 ///<param name="title">Name of the co-curricular or extra-curricular activity.</param>
 ///<param name="studentActivityType">A StudentActivityType</param>
 ///
 public StudentActivityInfo( string refId, string title, StudentActivityType studentActivityType )
     : base(Adk.SifVersion, StudentDTD.STUDENTACTIVITYINFO)
 {
     this.RefId = refId;
     this.Title = title;
     this.StudentActivityType = studentActivityType;
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">The ID (GUID) that uniquely identifies the instance of the object.</param>
 ///<param name="title">Name of the co-curricular or extra-curricular activity.</param>
 ///<param name="studentActivityType">A StudentActivityType</param>
 ///
 public StudentActivityInfo(string refId, string title, StudentActivityType studentActivityType) : base(Adk.SifVersion, StudentDTD.STUDENTACTIVITYINFO)
 {
     this.RefId = refId;
     this.Title = title;
     this.StudentActivityType = studentActivityType;
 }