Ejemplo n.º 1
0
 // 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));
 }
Ejemplo n.º 2
0
 public static Contact GetAnother(int id1, int id2, int id3)
 {
     ContactHandler.Update();
     return(ContactHandler.FindNot(id1, id2, id3));
 }