public int insertarDetalleRepDevolucionServicio(clsDetalleRepDevolucionServicio obj) { m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos); return m_clsDetalleRepDevolucionServicioDALC.Insertar(obj); }
public int eliminarDetalleRepDevolucionServicio(clsDetalleRepDevolucionServicio obj, SentenciaSQL sql) { m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos); return m_clsDetalleRepDevolucionServicioDALC.Eliminar(obj, sql); }
public clsDetalleRepDevolucionServicio consultarEntidadDetalleRepDevolucionServicio(SentenciaSQL sql) { m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos); return m_clsDetalleRepDevolucionServicioDALC.Consultar(sql); }
public List<clsDetalleRepDevolucionServicio> consultarListaDetalleRepDevolucionServicio(SentenciaSQL sql) { m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos); return m_clsDetalleRepDevolucionServicioDALC.listConsultar(sql); }
public DataTable consultarDatosDetalleRepDevolucionServicio(SentenciaSQL sql) { m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos); return m_clsDetalleRepDevolucionServicioDALC.datatableConsultar(sql); }