Package es.ua.dccia.datos

Source Code of es.ua.dccia.datos.FirmaDao

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package es.ua.dccia.datos;

import es.ua.dccia.dominio.Destinatario;
import es.ua.dccia.dominio.Firma;
import es.ua.dccia.dominio.Peticion;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.Query;

/**
*
* @author otto
*/
public class FirmaDao extends Dao<Firma, Long> {

    public FirmaDao(EntityManager em) {
        super(em);
    }

    @Override
    public Firma find(Long id) {
        Firma f = em.find(Firma.class, id);
        return f;
    }

}
TOP

Related Classes of es.ua.dccia.datos.FirmaDao

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.