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.
29 lines
662 B
29 lines
662 B
11 months ago
|
/*
|
||
|
* 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.Estado;
|
||
|
import hola.msg.Mensaje;
|
||
|
import java.util.List;
|
||
|
import javax.ejb.Local;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author chore
|
||
|
*/
|
||
|
@Local
|
||
|
public interface EstadoBLLocal {
|
||
|
|
||
|
public Mensaje agregar(Estado estado);
|
||
|
|
||
|
public Estado buscarId(Estado estado);
|
||
|
|
||
|
public void eliminarId(Estado estado);
|
||
|
|
||
|
public Mensaje editar(Estado estado);
|
||
|
|
||
|
public List<Estado> buscarValidos(boolean estado);
|
||
|
}
|