/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">The ID (GUID) that uniquely identifies a particular incident</param> ///<param name="schoolInfoRefId">The ID (GUID) of the school that the event takes place.</param> ///<param name="behaviourType">A BehaviourType</param> ///<param name="incident">An Incident</param> ///<param name="participants">A Participants</param> /// public LearnerBehaviourIncident(string refId, string schoolInfoRefId, BehaviourType behaviourType, Incident incident, Participants participants) : base(Adk.SifVersion, LearnerDTD.LEARNERBEHAVIOURINCIDENT) { this.RefId = refId; this.SchoolInfoRefId = schoolInfoRefId; this.BehaviourType = behaviourType; this.Incident = incident; this.Participants = participants; }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">The ID (GUID) that uniquely identifies a particular incident</param> ///<param name="schoolInfoRefId">The ID (GUID) of the school that the event takes place.</param> ///<param name="behaviourType">A BehaviourType</param> ///<param name="incident">An Incident</param> ///<param name="participants">A Participants</param> /// public LearnerBehaviourIncident( string refId, string schoolInfoRefId, BehaviourType behaviourType, Incident incident, Participants participants ) : base(Adk.SifVersion, LearnerDTD.LEARNERBEHAVIOURINCIDENT) { this.RefId = refId; this.SchoolInfoRefId = schoolInfoRefId; this.BehaviourType = behaviourType; this.Incident = incident; this.Participants = participants; }