/* * 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.core.impl.integration; import com.megatim.fdxconsultation.core.ifaces.integration.EchecIntegrationManager; import com.megatim.fdxconsultation.dao.ifaces.integration.EchecIntegrationDAO; import javax.ejb.EJB; import javax.enterprise.context.Dependent; /** * * @author ASUS */ @Dependent public class EchecIntegrationManagerImpl implements EchecIntegrationManager{ @EJB private EchecIntegrationDAO dao; @Override public EchecIntegrationDAO getDao() { return dao; } }