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