Package project.entities.institute

Examples of project.entities.institute.Group


  @Override
  public Group createGroup(int chair, int course, Date creationDate,
      Date disbandmentDate, int faculty, String number, int plan,
      int speciality) {
    Group group = new Group(chair, course, creationDate, disbandmentDate,
        faculty, number, plan, speciality);
    return (Group) getHibernateTemplate().save(group);
  }
View Full Code Here

TOP

Related Classes of project.entities.institute.Group

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.