Package ecar.pojo

Examples of ecar.pojo.GrupoAtributoGatt


     * @throws ECARException
     */
    public List getGruposAtributosCadastroUsuario(  )
                                           throws ECARException
    {
        GrupoAtributoGatt grupoAtributo = new GrupoAtributoGatt(  );
        grupoAtributo.setIndAtivoGatt( "S" );
        grupoAtributo.setIndSistemaGatt( "N" );

        return this.pesquisar( grupoAtributo,
                               new String[] { "seqApresentacaoGatt", "asc" } );
    }
View Full Code Here


     * @throws ECARException
     */
    public List getGrupoAtributos( String indTabelaUso )
                           throws ECARException
    {
        GrupoAtributoGatt grupoAtributo = new GrupoAtributoGatt(  );
        grupoAtributo.setIndTabelaUsoGatt( indTabelaUso );

        return this.pesquisar( grupoAtributo,
                               new String[] { "seqApresentacaoGatt", "asc" } );
    }
View Full Code Here

TOP

Related Classes of ecar.pojo.GrupoAtributoGatt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.