public int insertarDetalleDevolucion(clsDetalleDevolucion obj)
 {
     m_clsDetalleDevolucionDALC = new clsDetalleDevolucionDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionDALC.Insertar(obj);
 }
 public int eliminarDetalleDevolucion(clsDetalleDevolucion obj, SentenciaSQL sql)
 {
     m_clsDetalleDevolucionDALC = new clsDetalleDevolucionDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionDALC.Eliminar(obj, sql);
 }
 public clsDetalleDevolucion consultarEntidadDetalleDevolucion(SentenciaSQL sql)
 {
     m_clsDetalleDevolucionDALC = new clsDetalleDevolucionDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionDALC.Consultar(sql);
 }
 public List<clsDetalleDevolucion> consultarListaDetalleDevolucion(SentenciaSQL sql)
 {
     m_clsDetalleDevolucionDALC = new clsDetalleDevolucionDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionDALC.listConsultar(sql);
 }
 public DataTable consultarDatosDetalleDevolucion(SentenciaSQL sql)
 {
     m_clsDetalleDevolucionDALC = new clsDetalleDevolucionDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionDALC.datatableConsultar(sql);
 }