/// <summary> /// Envia los cambios del tpu_MotivosDevolucionesDataset a la base de datos. /// </summary> public static void Update(tpu_MotivosDevolucionesDataset dataSet) { ApplicationAssert.Check(dataSet != null, "El argumento dataSet no debe ser nulo.", ApplicationAssert.LineNumber); ApplicationAssert.Check(dataSet.tpu_MotivosDevoluciones.Rows.Count > 0, "La tabla dataSet.tpu_MotivosDevolucionesDataTable debe poseer alguna fila.", ApplicationAssert.LineNumber); mz.erp.dataaccess.tpu_MotivosDevoluciones.Update(dataSet); }
public static tpu_MotivosDevolucionesDataset GetList(long IdMotivoDevolucion, string Descripcion, DateTime FechaCreacion, long IdConexionCreacion, byte[] UltimaModificacion, long IdConexionUltimaModificacion, long IdReservado, Guid RowId, long IdEmpresa) { tpu_MotivosDevolucionesDataset data = new tpu_MotivosDevolucionesDataset(); SqlDataAdapter adapter = new SqlDataAdapter(); adapter.TableMappings.Add("Table", "tpu_MotivosDevoluciones"); SqlCommand cmd = new SqlCommand("Pr_tpu_MotivosDevoluciones_Search", dbhelper.Connection.GetConnection()); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add(new SqlParameter("@IdMotivoDevolucion", SqlDbType.BigInt)); cmd.Parameters["@IdMotivoDevolucion"].Value = IdMotivoDevolucion; cmd.Parameters.Add(new SqlParameter("@Descripcion", SqlDbType.VarChar)); cmd.Parameters["@Descripcion"].Value = Descripcion; cmd.Parameters.Add(new SqlParameter("@FechaCreacion", SqlDbType.DateTime)); cmd.Parameters["@FechaCreacion"].Value = FechaCreacion; cmd.Parameters.Add(new SqlParameter("@IdConexionCreacion", SqlDbType.BigInt)); cmd.Parameters["@IdConexionCreacion"].Value = IdConexionCreacion; cmd.Parameters.Add(new SqlParameter("@UltimaModificacion", SqlDbType.Timestamp)); cmd.Parameters["@UltimaModificacion"].Value = UltimaModificacion; cmd.Parameters.Add(new SqlParameter("@IdConexionUltimaModificacion", SqlDbType.BigInt)); cmd.Parameters["@IdConexionUltimaModificacion"].Value = IdConexionUltimaModificacion; cmd.Parameters.Add(new SqlParameter("@IdReservado", SqlDbType.BigInt)); cmd.Parameters["@IdReservado"].Value = IdReservado; cmd.Parameters.Add(new SqlParameter("@RowId", SqlDbType.UniqueIdentifier)); cmd.Parameters["@RowId"].Value = RowId; cmd.Parameters.Add(new SqlParameter("@IdEmpresa", SqlDbType.BigInt)); cmd.Parameters["@IdEmpresa"].Value = IdEmpresa; adapter.SelectCommand = cmd; adapter.Fill(data); return(data); }
public static tpu_MotivosDevolucionesDataset.tpu_MotivosDevolucionesRow GetByPk(long IdMotivoDevolucion) { tpu_MotivosDevolucionesDataset data = new tpu_MotivosDevolucionesDataset(); SqlCommand cmd = new SqlCommand("Pr_tpu_MotivosDevoluciones_GetByPk", dbhelper.Connection.GetConnection()); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add(new SqlParameter("@IdMotivoDevolucion", SqlDbType.BigInt)); cmd.Parameters["@IdMotivoDevolucion"].Value = IdMotivoDevolucion; SqlDataAdapter adapter = new SqlDataAdapter(cmd); adapter.TableMappings.Add("Table", "tpu_MotivosDevoluciones"); adapter.Fill(data); if (data.tpu_MotivosDevoluciones.Rows.Count == 1) { return((tpu_MotivosDevolucionesDataset.tpu_MotivosDevolucionesRow)data.tpu_MotivosDevoluciones.Rows[0]); } return(null); }
public static tpu_MotivosDevolucionesDataset GetList() { tpu_MotivosDevolucionesDataset data = new tpu_MotivosDevolucionesDataset(); return(( tpu_MotivosDevolucionesDataset )GetList(data)); }
public static void Update(tpu_MotivosDevolucionesDataset dataSet) { Update(dataSet.tpu_MotivosDevoluciones); }