/// <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 );
 }
Esempio n. 2
0
 /// <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);
 }
Esempio n. 3
0
 /// <summary>
 /// Sets the value of the <c>&lt;RegistrationStatus&gt;</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>&lt;RegistrationStatus&gt;</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 );
 }