/// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="ssn">Employee Social Security Number. This element or StateProvinceId, or both, must be included.</param>
 ///<param name="stateProvinceId">The state-assigned identifier for this staff member. This element or SSN, or both, must be included.</param>
 ///<param name="name">Name of employee.</param>
 ///<param name="activityName">Name of the course or activity</param>
 ///<param name="activityType">Type of course or activity</param>
 ///<param name="activityHours">Total activity hours/total clock hours</param>
 ///<param name="earned">Hours attended or credits earned by the employee</param>
 ///<param name="dateFrom">Start date of the course or activity</param>
 ///<param name="dateTo">Source: 0613 Employment Status</param>
 ///
 public EmployeeRecertification( string ssn, string stateProvinceId, Name name, string activityName, ActivityType activityType, decimal? activityHours, Earned earned, DateTime? dateFrom, DateTime? dateTo )
     : base(Adk.SifVersion, ProfdevDTD.EMPLOYEERECERTIFICATION)
 {
     this.SSN = ssn;
     this.StateProvinceId = stateProvinceId;
     this.Name = name;
     this.ActivityName = activityName;
     this.SetActivityType( activityType );
     this.ActivityHours = activityHours;
     this.Earned = earned;
     this.DateFrom = dateFrom;
     this.DateTo = dateTo;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="ssn">Employee Social Security Number. This element or StateProvinceId, or both, must be included.</param>
 ///<param name="stateProvinceId">The state-assigned identifier for this staff member. This element or SSN, or both, must be included.</param>
 ///<param name="name">Name of employee.</param>
 ///<param name="activityName">Name of the course or activity</param>
 ///<param name="activityType">Type of course or activity</param>
 ///<param name="activityHours">Total activity hours/total clock hours</param>
 ///<param name="earned">Hours attended or credits earned by the employee</param>
 ///<param name="dateFrom">Start date of the course or activity</param>
 ///<param name="dateTo">Source: 0613 Employment Status</param>
 ///
 public EmployeeRecertification(string ssn, string stateProvinceId, Name name, string activityName, ActivityType activityType, decimal?activityHours, Earned earned, DateTime?dateFrom, DateTime?dateTo) : base(Adk.SifVersion, ProfdevDTD.EMPLOYEERECERTIFICATION)
 {
     this.SSN             = ssn;
     this.StateProvinceId = stateProvinceId;
     this.Name            = name;
     this.ActivityName    = activityName;
     this.SetActivityType(activityType);
     this.ActivityHours = activityHours;
     this.Earned        = earned;
     this.DateFrom      = dateFrom;
     this.DateTo        = dateTo;
 }
 /// <summary>
 /// Sets the value of the <c>&lt;ActivityType&gt;</c> element.
 /// </summary>
 /// <param name="val">A ActivityType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Type of course or activity"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetActivityType( ActivityType val )
 {
     SetField( ProfdevDTD.EMPLOYEERECERTIFICATION_ACTIVITYTYPE, val );
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Sets the value of the <c>&lt;ActivityType&gt;</c> element.
 /// </summary>
 /// <param name="val">A ActivityType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Type of course or activity"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetActivityType(ActivityType val)
 {
     SetField(ProfdevDTD.EMPLOYEERECERTIFICATION_ACTIVITYTYPE, val);
 }