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