19 lines
401 B
Plaintext
Executable File
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
|
|
}
|
|
|
|
}
|