/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template */ package com.megatim.fdxconsultation.dao.impl.dataproduction; import com.megatim.fdxconsultation.dao.ifaces.dataproduction.DataProductionToDeleteDAO; import com.megatim.fdxcommons.model.dataproduction.DataProductionToDelete; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * * @author ASUS */ @Stateless public class DataProductionToDeleteDAOImpl implements DataProductionToDeleteDAO { @PersistenceContext(unitName = "fdxConsultationPersistenceUnit") EntityManager em; @Override public Class getManagedEntityClass() { return DataProductionToDelete.class; } @Override public EntityManager getEntityManager() { return em; } @Override public DataProductionToDelete getById(Long id) { throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody } }