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