/**
  * Set Remarks of the EmployerCandidateDO
  *
  * @param Remarks of the EmployerCandidateDO
  * @exception DataObjectException If the object is not found in the database.
  */
 public void setRemarks(String Remarks) throws DataObjectException {
   try {
     // business actions/assertions prior to data assignment
     beforeAnySet();
   } catch (Exception e) {
     throw new DataObjectException("beforeAnySet: " + e.getMessage());
   }
   DO.setRemarks(Remarks);
   afterAnySet(); // business actions/assertions after data assignment
 }