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