public int insertarDetalleCorte(clsDetalleCorte obj) { m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos); return m_clsDetalleCorteDALC.Insertar(obj); }
public int eliminarDetalleCorte(clsDetalleCorte obj, SentenciaSQL sql) { m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos); return m_clsDetalleCorteDALC.Eliminar(obj, sql); }
public clsDetalleCorte consultarEntidadDetalleCorte(SentenciaSQL sql) { m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos); return m_clsDetalleCorteDALC.Consultar(sql); }
public List<clsDetalleCorte> consultarListaDetalleCorte(SentenciaSQL sql) { m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos); return m_clsDetalleCorteDALC.listConsultar(sql); }
public DataTable consultarDatosDetalleCorte(SentenciaSQL sql) { m_clsDetalleCorteDALC = new clsDetalleCorteDALC(m_EjecutorBaseDatos); return m_clsDetalleCorteDALC.datatableConsultar(sql); }