public int Editar(clsProyectoVenta obj, SentenciaSQL sql) { int resultado = 0; EjecutorBaseDatos.limpiarParametros(); string sentenciaSQL = construirUpdate(obj) + CondicionSQL(sql); resultado = EjecutorBaseDatos.ejecutarSentencia(sentenciaSQL); return resultado; }
public clsProyectoVenta CrearObjeto(System.Data.DataTable tabla) { if (tabla.Rows.Count == 0) return null; clsProyectoVenta obj = new clsProyectoVenta(); System.Data.DataRow fila = tabla.Rows[0]; { obj.Id = Convert.ToInt16(fila["Id"]); obj.idProyecto = Convert.ToInt16(fila["idProyecto"]); } return obj; }
public List<clsProyectoVenta> CrearObjetos(System.Data.DataTable tabla) { if (tabla.Rows.Count == 0) return null; var lista = new List<clsProyectoVenta>(); foreach (System.Data.DataRow fila in tabla.Rows) { var obj = new clsProyectoVenta(); obj.Id = Convert.ToInt16(fila["Id"]); obj.idProyecto = Convert.ToInt16(fila["idProyecto"]); lista.Add(obj); } return lista; }
public int Insertar(clsProyectoVenta obj) { int resultado = 0; EjecutorBaseDatos.limpiarParametros(); string sentenciaSQL = construirInsert(obj); resultado = EjecutorBaseDatos.ejecutarSentenciaInsert(sentenciaSQL); return resultado; }
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); }