Package project.entities.institute

Examples of project.entities.institute.Employee


  @Override
  public Employee createDepartment(Date acceptanceDate, String card,
      Date deductionDate, String insurance, int person, String postal,
      String receipt) {
    Employee employee = new Employee(acceptanceDate, card, deductionDate,
        insurance, person, postal, receipt);
    return (Employee) getHibernateTemplate().save(employee);
  }
View Full Code Here

TOP

Related Classes of project.entities.institute.Employee

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.