public static PuestosDataset.PuestosRow GetByPk(long IdPuesto) { PuestosDataset data = new PuestosDataset(); SqlCommand cmd = new SqlCommand("Pr_Puestos_GetByPk", dbhelper.Connection.GetConnection()); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add(new SqlParameter("@IdPuesto", SqlDbType.BigInt)); cmd.Parameters["@IdPuesto"].Value = IdPuesto; SqlDataAdapter adapter = new SqlDataAdapter(cmd); adapter.TableMappings.Add("Table", "Puestos"); adapter.Fill(data); if (data.Puestos.Rows.Count == 1) { return((PuestosDataset.PuestosRow)data.Puestos.Rows[0]); } return(null); }
public static void Update(PuestosDataset dataSet) { Update(dataSet.Puestos); }
public static PuestosDataset GetList() { PuestosDataset data = new PuestosDataset(); return(( PuestosDataset )GetList(data)); }