AdmMono/src/com/rjconsultores/ventaboletos/dao/MotivoDevolucaoBilheteDAO.java

22 lines
612 B
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.dao;
import com.rjconsultores.ventaboletos.entidad.MotivoDevolucaoBilhete;
import java.util.List;
/**
*
* @author Bruno Neves
*/
public interface MotivoDevolucaoBilheteDAO extends GenericDAO<MotivoDevolucaoBilhete, Integer> {
public List<MotivoDevolucaoBilhete> buscar(String descmotivo, String tipomotivo);
public List<MotivoDevolucaoBilhete> obtenerTodosTipoMotivoB();
public List<MotivoDevolucaoBilhete> obtenerTodosEspecificos(Integer[] motivos);
}