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