public static tsy_MotivoOrdenReparacionDataset GetListHijos(long IdMotivoPadre) { tsy_MotivoOrdenReparacionDataset data = new tsy_MotivoOrdenReparacionDataset(); SqlDataAdapter adapter = new SqlDataAdapter(); adapter.TableMappings.Add("Table", "tsy_MotivoOrdenReparacion"); SqlCommand cmd = new SqlCommand("Pr_tsy_MotivoOrdenReparacion_GetListHijos", dbhelper.Connection.GetConnection()); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add(new SqlParameter("@IdMotivoPadre", SqlDbType.BigInt)); if (IdMotivoPadre == long.MinValue) { cmd.Parameters["@IdMotivoPadre"].Value = System.DBNull.Value; } else { cmd.Parameters["@IdMotivoPadre"].Value = IdMotivoPadre; } adapter.SelectCommand = cmd; adapter.Fill(data); return(data); }
/// <summary> /// Envia los cambios del tsy_MotivoOrdenReparacionDataset a la base de datos. /// </summary> public static void Update(tsy_MotivoOrdenReparacionDataset dataSet) { ApplicationAssert.Check(dataSet != null, "El argumento dataSet no debe ser nulo.", ApplicationAssert.LineNumber); ApplicationAssert.Check(dataSet.tsy_MotivoOrdenReparacion.Rows.Count > 0, "La tabla dataSet.tsy_MotivoOrdenReparacionDataTable debe poseer alguna fila.", ApplicationAssert.LineNumber); mz.erp.dataaccess.tsy_MotivoOrdenReparacion.Update(dataSet); }
public static tsy_MotivoOrdenReparacionDataset GetList(long IdMotivo, long IdMotivoPadre, bool EsVerdadero, string Descripcion) { tsy_MotivoOrdenReparacionDataset data = new tsy_MotivoOrdenReparacionDataset(); SqlDataAdapter adapter = new SqlDataAdapter(); adapter.TableMappings.Add("Table", "tsy_MotivoOrdenReparacion"); SqlCommand cmd = new SqlCommand("Pr_tsy_MotivoOrdenReparacion_Search", dbhelper.Connection.GetConnection()); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add(new SqlParameter("@IdMotivo", SqlDbType.BigInt)); if (IdMotivo == long.MinValue) { cmd.Parameters["@IdMotivo"].Value = System.DBNull.Value; } else { cmd.Parameters["@IdMotivo"].Value = IdMotivo; } cmd.Parameters.Add(new SqlParameter("@IdMotivoPadre", SqlDbType.BigInt)); if (IdMotivoPadre == long.MinValue) { cmd.Parameters["@IdMotivoPadre"].Value = System.DBNull.Value; } else { cmd.Parameters["@IdMotivoPadre"].Value = IdMotivoPadre; } cmd.Parameters.Add(new SqlParameter("@EsVerdadero", SqlDbType.Bit)); cmd.Parameters["@EsVerdadero"].Value = EsVerdadero; cmd.Parameters.Add(new SqlParameter("@Descripcion", SqlDbType.VarChar)); if (Descripcion.Equals(string.Empty)) { cmd.Parameters["@Descripcion"].Value = System.DBNull.Value; } else { cmd.Parameters["@Descripcion"].Value = Descripcion; } adapter.SelectCommand = cmd; adapter.Fill(data); return(data); }
public static tsy_MotivoOrdenReparacionDataset GetListPadres() { tsy_MotivoOrdenReparacionDataset data = new tsy_MotivoOrdenReparacionDataset(); SqlDataAdapter adapter = new SqlDataAdapter(); adapter.TableMappings.Add("Table", "tsy_MotivoOrdenReparacion"); SqlCommand cmd = new SqlCommand("Pr_tsy_MotivoOrdenReparacion_GetListPadres", dbhelper.Connection.GetConnection()); cmd.CommandType = CommandType.StoredProcedure; adapter.SelectCommand = cmd; adapter.Fill(data); return(data); }
public static tsy_MotivoOrdenReparacionDataset.tsy_MotivoOrdenReparacionRow GetByPk(long IdMotivo) { tsy_MotivoOrdenReparacionDataset data = new tsy_MotivoOrdenReparacionDataset(); SqlCommand cmd = new SqlCommand("Pr_tsy_MotivoOrdenReparacion_GetByPk", dbhelper.Connection.GetConnection()); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add(new SqlParameter("@IdMotivo", SqlDbType.BigInt)); cmd.Parameters["@IdMotivo"].Value = IdMotivo; SqlDataAdapter adapter = new SqlDataAdapter(cmd); adapter.TableMappings.Add("Table", "tsy_MotivoOrdenReparacion"); adapter.Fill(data); if (data.tsy_MotivoOrdenReparacion.Rows.Count == 1) { return((tsy_MotivoOrdenReparacionDataset.tsy_MotivoOrdenReparacionRow)data.tsy_MotivoOrdenReparacion.Rows[0]); } return(null); }
public static tsy_MotivoOrdenReparacionDataset GetList() { tsy_MotivoOrdenReparacionDataset data = new tsy_MotivoOrdenReparacionDataset(); return(( tsy_MotivoOrdenReparacionDataset )GetList(data)); }
public static void Update(tsy_MotivoOrdenReparacionDataset dataSet) { Update(dataSet.tsy_MotivoOrdenReparacion); }