Operation Details
Description: Reads the start and end dates of the employment record corresponding to a paid-employment instance.
Sterotype: ns
SQL
SELECT
  Employment.fromDate,
  Employment.toDate
INTO
  :fromDate,
  :toDate 
FROM
  PaidEmployment,
  Employment 
WHERE PaidEmployment.evidenceID = :evidenceID 
  AND Employment.employmentID = PaidEmployment.employmentID