maia_modificado/registro/.svn/pristine/71/71ea2c5bb1eb409c1f49f2d09db...

19 lines
401 B
Plaintext
Executable File

package com.fp.armas.portal.dao.registro;
import com.fp.armas.portal.dao.general.GenericDaoImpl;
import com.fp.armas.portal.model.Tcustcompany;
/**
* Objeto de acceso a datos de la tabla {@link Tcustcompany}
* @author dcruz
*
*/
public class CompaniaDao extends GenericDaoImpl<Tcustcompany> {
public CompaniaDao() {
super(Tcustcompany.class);
// TODO Auto-generated constructor stub
}
}