/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">A RefId</param> ///<param name="employeePersonalRefId">Who this record affects.</param> ///<param name="registrationStatus">Tracks the status of the user in the professional development activity.</param> /// public ProfessionalDevelopmentRegistration( string refId, string employeePersonalRefId, RegistrationStatus registrationStatus ) : base(Adk.SifVersion, ProfdevDTD.PROFESSIONALDEVELOPMENTREGISTRATION) { this.RefId = refId; this.EmployeePersonalRefId = employeePersonalRefId; this.SetRegistrationStatus( registrationStatus ); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">A RefId</param> ///<param name="employeePersonalRefId">Who this record affects.</param> ///<param name="registrationStatus">Tracks the status of the user in the professional development activity.</param> /// public ProfessionalDevelopmentRegistration(string refId, string employeePersonalRefId, RegistrationStatus registrationStatus) : base(Adk.SifVersion, ProfdevDTD.PROFESSIONALDEVELOPMENTREGISTRATION) { this.RefId = refId; this.EmployeePersonalRefId = employeePersonalRefId; this.SetRegistrationStatus(registrationStatus); }
/// <summary> /// Sets the value of the <c><RegistrationStatus></c> element. /// </summary> /// <param name="val">A RegistrationStatus object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "Tracks the status of the user in the professional development activity."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.2</para> /// </remarks> public void SetRegistrationStatus(RegistrationStatus val) { SetField(ProfdevDTD.PROFESSIONALDEVELOPMENTREGISTRATION_REGISTRATIONSTATUS, val); }
/// <summary> /// Sets the value of the <c><RegistrationStatus></c> element. /// </summary> /// <param name="val">A RegistrationStatus object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "Tracks the status of the user in the professional development activity."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.2</para> /// </remarks> public void SetRegistrationStatus( RegistrationStatus val ) { SetField( ProfdevDTD.PROFESSIONALDEVELOPMENTREGISTRATION_REGISTRATIONSTATUS, val ); }