// Get a contact point that has the same ID. public static Contact GetLatest(int id) { if (id == 0) { return(default(Contact)); } ContactHandler.Update(); return(ContactHandler.FindExcludeNewEntries(id)); }
public static Contact GetAnother(int id1, int id2, int id3) { ContactHandler.Update(); return(ContactHandler.FindNot(id1, id2, id3)); }