Examples of ProgressBook


Examples of project.entities.institute.ProgressBook

public class ProgressBookDAOImpl extends HibernateDaoSupport implements
    ProgressBookDAO {

  @Override
  public ProgressBook createProgressBook(Date date, int group, int teacher) {
    ProgressBook progressBook = new ProgressBook(date, group, teacher);
    return (ProgressBook) getHibernateTemplate().save(progressBook);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.