11 lines
309 B
Java
11 lines
309 B
Java
package com.rjconsultores.ventaboletos.dao;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.Corrida;
|
|
import com.rjconsultores.ventaboletos.entidad.IntegracaoTotvs;
|
|
|
|
public interface IntegracaoTotvsDAO extends GenericDAO<IntegracaoTotvs, Integer> {
|
|
|
|
public void borrarByCorrida(Corrida corrida);
|
|
|
|
}
|