Exemplo n.º 1
0
 public int insertarGrupoElemento(clsGrupoElemento obj)
 {
     m_clsGrupoElementoDALC = new clsGrupoElementoDALC(m_EjecutorBaseDatos);
     return m_clsGrupoElementoDALC.Insertar(obj);
 }
Exemplo n.º 2
0
 public int eliminarGrupoElemento(clsGrupoElemento obj, SentenciaSQL sql)
 {
     m_clsGrupoElementoDALC = new clsGrupoElementoDALC(m_EjecutorBaseDatos);
     return m_clsGrupoElementoDALC.Eliminar(obj, sql);
 }
Exemplo n.º 3
0
 public clsGrupoElemento consultarEntidadGrupoElemento(SentenciaSQL sql)
 {
     m_clsGrupoElementoDALC = new clsGrupoElementoDALC(m_EjecutorBaseDatos);
     return m_clsGrupoElementoDALC.Consultar(sql);
 }
Exemplo n.º 4
0
 public List<clsGrupoElemento> consultarListaGrupoElemento(SentenciaSQL sql)
 {
     m_clsGrupoElementoDALC = new clsGrupoElementoDALC(m_EjecutorBaseDatos);
     return m_clsGrupoElementoDALC.listConsultar(sql);
 }
Exemplo n.º 5
0
 public DataTable consultarDatosGrupoElemento(SentenciaSQL sql)
 {
     m_clsGrupoElementoDALC = new clsGrupoElementoDALC(m_EjecutorBaseDatos);
     return m_clsGrupoElementoDALC.datatableConsultar(sql);
 }