Exemplo n.º 1
0
 public int insertarDetalleCorte(clsDetalleCorte obj)
 {
     m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos);
     return m_clsDetalleCorteDALC.Insertar(obj);
 }
Exemplo n.º 2
0
 public int eliminarDetalleCorte(clsDetalleCorte obj, SentenciaSQL sql)
 {
     m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos);
     return m_clsDetalleCorteDALC.Eliminar(obj, sql);
 }
Exemplo n.º 3
0
 public clsDetalleCorte consultarEntidadDetalleCorte(SentenciaSQL sql)
 {
     m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos);
     return m_clsDetalleCorteDALC.Consultar(sql);
 }
Exemplo n.º 4
0
 public List<clsDetalleCorte> consultarListaDetalleCorte(SentenciaSQL sql)
 {
     m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos);
     return m_clsDetalleCorteDALC.listConsultar(sql);
 }
Exemplo n.º 5
0
 public DataTable consultarDatosDetalleCorte(SentenciaSQL sql)
 {
     m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos);
     return m_clsDetalleCorteDALC.datatableConsultar(sql);
 }