Package com.cin.entity

Examples of com.cin.entity.Employmentstat


    this.employmentStatus = employmentStatus.trim();
  }
}

public Employmentstat toEJB(int ssn){
  Employmentstat ejb = new Employmentstat();
  ejb.setEmploymentstat(employmentStatus);
  ejb.setSsn(ssn);
  ejb.setUnemploymentreason(unemploymentReason);
  return ejb;
}
View Full Code Here

TOP

Related Classes of com.cin.entity.Employmentstat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.