15 lines
502 B
Java
15 lines
502 B
Java
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.OCD;
|
|
import com.rjconsultores.ventaboletos.vo.reembolsoocdnotacredito.ReembolsoOcdNotaCreditoVO;
|
|
|
|
public interface OCDService extends GenericService<OCD, Integer> {
|
|
|
|
List<ReembolsoOcdNotaCreditoVO> busquedaDatosReembolsoOcdNotaCreditoRS(Date fecInicial, Date fecFinal,
|
|
Date fecPagamentoInicial, Date fecPagamentoFinal, Boolean indPago);
|
|
|
|
}
|