Package br.com.msi.entities

Examples of br.com.msi.entities.IpsBloqueados


    }

    @TransactionAttribute(TransactionAttributeType.REQUIRED)
    @Override
    public IpsBloqueados excluir(Long idIpBloqueado) throws Exception {
        IpsBloqueados ipsBloqueados = ipsBloqueadosDao.findById(idIpBloqueado);
        ipsBloqueadosDao.delete(ipsBloqueados);
        return ipsBloqueados;
    }
View Full Code Here

TOP

Related Classes of br.com.msi.entities.IpsBloqueados

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.