public int insertarProyectoVenta(clsProyectoVenta obj) { m_clsProyectoVentaDALC = new clsProyectoVentaDALC(m_EjecutorBaseDatos); return m_clsProyectoVentaDALC.Insertar(obj); }
public int eliminarProyectoVenta(clsProyectoVenta obj, SentenciaSQL sql) { m_clsProyectoVentaDALC = new clsProyectoVentaDALC(m_EjecutorBaseDatos); return m_clsProyectoVentaDALC.Eliminar(obj, sql); }
public clsProyectoVenta consultarEntidadProyectoVenta(SentenciaSQL sql) { m_clsProyectoVentaDALC = new clsProyectoVentaDALC(m_EjecutorBaseDatos); return m_clsProyectoVentaDALC.Consultar(sql); }
public List<clsProyectoVenta> consultarListaProyectoVenta(SentenciaSQL sql) { m_clsProyectoVentaDALC = new clsProyectoVentaDALC(m_EjecutorBaseDatos); return m_clsProyectoVentaDALC.listConsultar(sql); }
public DataTable consultarDatosProyectoVenta(SentenciaSQL sql) { m_clsProyectoVentaDALC = new clsProyectoVentaDALC(m_EjecutorBaseDatos); return m_clsProyectoVentaDALC.datatableConsultar(sql); }