Package project.entities.documents

Examples of project.entities.documents.Contragents


    ContragentsDAO {

  @Override
  public Contragents createDocument(Timestamp dateOfSigning, int document,
      Timestamp endDateOfSigning, int person) {
    Contragents contragents = new Contragents(dateOfSigning, document,
        endDateOfSigning, person);
    return (Contragents) getHibernateTemplate().save(contragents);
  }
View Full Code Here

TOP

Related Classes of project.entities.documents.Contragents

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.