/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">This is the unique identification code</param> ///<param name="studentParticipationRefId">This is the reference code for student eligibility for participation</param> ///<param name="studentPersonalRefId">The GUID of the student that this object is linked to.</param> ///<param name="service">Specialized instruction or related service provided to this student.</param> /// public StudentPlacement( string refId, string studentParticipationRefId, string studentPersonalRefId, Service service ) : base(Adk.SifVersion, ProgramsDTD.STUDENTPLACEMENT) { this.RefId = refId; this.StudentParticipationRefId = studentParticipationRefId; this.StudentPersonalRefId = studentPersonalRefId; this.Service = service; }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="service">A Service</param> /// public StudentPlacementData( Service service ) : base(CommonDTD.STUDENTPLACEMENTDATA) { this.Service = service; }