private static bool hassent(string id) { UsedIDsTableAdapter s = new UsedIDsTableAdapter(); return s.GetID(id) > 0; }
private static void AddID(string id, string theItem) { UsedIDsTableAdapter s = new UsedIDsTableAdapter(); s.Insert(id, theItem); }