public int insertarDetalleDevolucionServicio(clsDetalleDevolucionServicio obj)
 {
     m_clsDetalleDevolucionServicioDALC = new clsDetalleDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionServicioDALC.Insertar(obj);
 }
 public int eliminarDetalleDevolucionServicio(clsDetalleDevolucionServicio obj, SentenciaSQL sql)
 {
     m_clsDetalleDevolucionServicioDALC = new clsDetalleDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionServicioDALC.Eliminar(obj, sql);
 }
 public clsDetalleDevolucionServicio consultarEntidadDetalleDevolucionServicio(SentenciaSQL sql)
 {
     m_clsDetalleDevolucionServicioDALC = new clsDetalleDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionServicioDALC.Consultar(sql);
 }
 public List<clsDetalleDevolucionServicio> consultarListaDetalleDevolucionServicio(SentenciaSQL sql)
 {
     m_clsDetalleDevolucionServicioDALC = new clsDetalleDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionServicioDALC.listConsultar(sql);
 }
 public DataTable consultarDatosDetalleDevolucionServicio(SentenciaSQL sql)
 {
     m_clsDetalleDevolucionServicioDALC = new clsDetalleDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionServicioDALC.datatableConsultar(sql);
 }