public int insertarDetalleDocumento(clsDetalleDocumento obj)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.Insertar(obj);
 }
 public int eliminarDetalleDocumento(clsDetalleDocumento obj, SentenciaSQL sql)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.Eliminar(obj, sql);
 }
 public clsDetalleDocumento consultarEntidadDetalleDocumento(SentenciaSQL sql)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.Consultar(sql);
 }
 public List<clsDetalleDocumento> consultarListaDetalleDocumento(SentenciaSQL sql)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.listConsultar(sql);
 }
 public DataTable consultarDatosDetalleDocumento(SentenciaSQL sql)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.datatableConsultar(sql);
 }