public int Editar(clsDetalleRepDevolucionServicio obj, SentenciaSQL sql) { int resultado = 0; EjecutorBaseDatos.limpiarParametros(); string sentenciaSQL = construirUpdate(obj) + CondicionSQL(sql); resultado = EjecutorBaseDatos.ejecutarSentencia(sentenciaSQL); return resultado; }
public clsDetalleRepDevolucionServicio CrearObjeto(System.Data.DataTable tabla) { if (tabla.Rows.Count == 0) return null; clsDetalleRepDevolucionServicio obj = new clsDetalleRepDevolucionServicio(); System.Data.DataRow fila = tabla.Rows[0]; { obj.Id = Convert.ToInt32(fila["Id"]); obj.idRepDevolucionServicio = Convert.ToInt32(fila["idRepDevolucionServicio"]); obj.idElemento = Convert.ToInt16(fila["idElemento"]); obj.Cantidad = Convert.ToInt32(fila["Cantidad"]); } return obj; }
public List<clsDetalleRepDevolucionServicio> CrearObjetos(System.Data.DataTable tabla) { if (tabla.Rows.Count == 0) return null; var lista = new List<clsDetalleRepDevolucionServicio>(); foreach (System.Data.DataRow fila in tabla.Rows) { var obj = new clsDetalleRepDevolucionServicio(); obj.Id = Convert.ToInt32(fila["Id"]); obj.idRepDevolucionServicio = Convert.ToInt32(fila["idRepDevolucionServicio"]); obj.idElemento = Convert.ToInt16(fila["idElemento"]); obj.Cantidad = Convert.ToInt32(fila["Cantidad"]); lista.Add(obj); } return lista; }
public int Insertar(clsDetalleRepDevolucionServicio obj) { int resultado = 0; EjecutorBaseDatos.limpiarParametros(); string sentenciaSQL = construirInsert(obj); resultado = EjecutorBaseDatos.ejecutarSentenciaInsert(sentenciaSQL); return resultado; }
public int insertarDetalleRepDevolucionServicio(clsDetalleRepDevolucionServicio obj) { m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos); return m_clsDetalleRepDevolucionServicioDALC.Insertar(obj); }
public int eliminarDetalleRepDevolucionServicio(clsDetalleRepDevolucionServicio obj, SentenciaSQL sql) { m_clsDetalleRepDevolucionServicioDALC = new clsDetalleRepDevolucionServicioDALC(m_EjecutorBaseDatos); return m_clsDetalleRepDevolucionServicioDALC.Eliminar(obj, sql); }