Пример #1
0
 public int insertarDetalleDocumento(clsDetalleDocumento obj)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.Insertar(obj);
 }
Пример #2
0
 public int eliminarDetalleDocumento(clsDetalleDocumento obj, SentenciaSQL sql)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.Eliminar(obj, sql);
 }
Пример #3
0
 public clsDetalleDocumento consultarEntidadDetalleDocumento(SentenciaSQL sql)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.Consultar(sql);
 }
Пример #4
0
 public List<clsDetalleDocumento> consultarListaDetalleDocumento(SentenciaSQL sql)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.listConsultar(sql);
 }
Пример #5
0
 public DataTable consultarDatosDetalleDocumento(SentenciaSQL sql)
 {
     m_clsDetalleDocumentoDALC = new clsDetalleDocumentoDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDocumentoDALC.datatableConsultar(sql);
 }