/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">A RefId</param> ///<param name="language">A Language</param> ///<param name="activityTime">Time structures for the activity.</param> /// public Activity( string refId, LanguageCode language, ActivityTime activityTime ) : base(Adk.SifVersion, InstrDTD.ACTIVITY) { this.RefId = refId; this.SetLanguage( language ); this.ActivityTime = activityTime; }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">A RefId</param> ///<param name="language">A Language</param> ///<param name="activityTime">Time structures for the activity.</param> /// public Activity(string refId, LanguageCode language, ActivityTime activityTime) : base(Adk.SifVersion, InstrDTD.ACTIVITY) { this.RefId = refId; this.SetLanguage(language); this.ActivityTime = activityTime; }