/*
|
* 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.apifdxweb.core.impl.referentiel.historique;
|
|
import com.megatim.fdxcommons.core.ifaces.referentiel.historique.ReferentielIntegrationHistoriqueManager;
|
import com.megatim.fdxcommons.dao.ifaces.referentiel.historique.ReferentielIntegrationHistoriqueDAO;
|
import javax.ejb.EJB;
|
import javax.enterprise.context.Dependent;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
@Dependent
|
public class ReferentielIntegrationHistoriqueManagerImpl implements ReferentielIntegrationHistoriqueManager {
|
|
@EJB
|
private ReferentielIntegrationHistoriqueDAO dao;
|
|
@Override
|
public ReferentielIntegrationHistoriqueDAO getDao() {
|
return dao;
|
}
|
|
}
|