コード例 #1
0
 public int insertarDetalleRepDevolucionServicio(clsDetalleRepDevolucionServicio obj)
 {
     m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleRepDevolucionServicioDALC.Insertar(obj);
 }
コード例 #2
0
 public int eliminarDetalleRepDevolucionServicio(clsDetalleRepDevolucionServicio obj, SentenciaSQL sql)
 {
     m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleRepDevolucionServicioDALC.Eliminar(obj, sql);
 }
コード例 #3
0
 public clsDetalleRepDevolucionServicio consultarEntidadDetalleRepDevolucionServicio(SentenciaSQL sql)
 {
     m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleRepDevolucionServicioDALC.Consultar(sql);
 }
コード例 #4
0
 public List<clsDetalleRepDevolucionServicio> consultarListaDetalleRepDevolucionServicio(SentenciaSQL sql)
 {
     m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleRepDevolucionServicioDALC.listConsultar(sql);
 }
コード例 #5
0
 public DataTable consultarDatosDetalleRepDevolucionServicio(SentenciaSQL sql)
 {
     m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleRepDevolucionServicioDALC.datatableConsultar(sql);
 }