You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
629 B
26 lines
629 B
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/J2EE/EJB30/SessionLocal.java to edit this template
|
|
*/
|
|
package hola.BL;
|
|
|
|
import hola.modelo.Pais;
|
|
import hola.msg.Mensaje;
|
|
import java.util.List;
|
|
import javax.ejb.Local;
|
|
|
|
|
|
|
|
/**
|
|
*
|
|
* @author eduar
|
|
*/
|
|
@Local
|
|
public interface PaisLocal {
|
|
public Mensaje agregar(Pais pais);
|
|
public Pais buscarId(Pais pais);
|
|
public void eliminarId(Pais pais);
|
|
public Mensaje editar(Pais pais);
|
|
public List<Pais> buscarValidos(boolean pais);
|
|
|
|
}
|
|
|