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 { public CompaniaDao() { super(Tcustcompany.class); // TODO Auto-generated constructor stub } }