16 lines
427 B
Java
16 lines
427 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.rjconsultores.ventaboletos.dao;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaContaBancaria;
|
|
|
|
/**
|
|
*
|
|
* @author Desenvolvimento
|
|
*/
|
|
public interface PtovtaEmpresaContaBancariaDAO extends GenericDAO<PtovtaEmpresaContaBancaria, Integer> {
|
|
public void borrarFisico(PtovtaEmpresaContaBancaria pto);
|
|
}
|