AdmMono/src/com/rjconsultores/ventaboletos/service/MotivoReimpresionService.java

18 lines
427 B
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.rjconsultores.ventaboletos.service;
import com.rjconsultores.ventaboletos.entidad.MotivoReimpresion;
import java.util.List;
/**
*
* @author Rafius
*/
public interface MotivoReimpresionService extends GenericService<MotivoReimpresion, Integer> {
public List<MotivoReimpresion> buscar(String descmotivo);
}