Exemplo n.º 1
0
 public int insertarEventoAuditoria(clsEventoAuditoria obj)
 {
     m_clsEventoAuditoriaDALC = new clsEventoAuditoriaDALC(m_EjecutorBaseDatos);
     return m_clsEventoAuditoriaDALC.Insertar(obj);
 }
Exemplo n.º 2
0
 public int eliminarEventoAuditoria(clsEventoAuditoria obj, SentenciaSQL sql)
 {
     m_clsEventoAuditoriaDALC = new clsEventoAuditoriaDALC(m_EjecutorBaseDatos);
     return m_clsEventoAuditoriaDALC.Eliminar(obj, sql);
 }
Exemplo n.º 3
0
 public clsEventoAuditoria consultarEntidadEventoAuditoria(SentenciaSQL sql)
 {
     m_clsEventoAuditoriaDALC = new clsEventoAuditoriaDALC(m_EjecutorBaseDatos);
     return m_clsEventoAuditoriaDALC.Consultar(sql);
 }
Exemplo n.º 4
0
 public List<clsEventoAuditoria> consultarListaEventoAuditoria(SentenciaSQL sql)
 {
     m_clsEventoAuditoriaDALC = new clsEventoAuditoriaDALC(m_EjecutorBaseDatos);
     return m_clsEventoAuditoriaDALC.listConsultar(sql);
 }
Exemplo n.º 5
0
 public DataTable consultarDatosEventoAuditoria(SentenciaSQL sql)
 {
     m_clsEventoAuditoriaDALC = new clsEventoAuditoriaDALC(m_EjecutorBaseDatos);
     return m_clsEventoAuditoriaDALC.datatableConsultar(sql);
 }