public static bool orderExists(string id) { if (Regex.IsMatch(id, @"^\d{1,}$")) { if (XmlWorks.getOrderNodeById(id) != null) { return(true); } } return(false); }
public static bool customerExists(string id) { if (Regex.IsMatch(id, @"\d{1,}")) { if (XmlWorks.getCustomerNodeById(id) != null) { return(true); } } return(false); }