Exemplo n.º 1
0
 /// <summary>
 /// add a contact by user id, contact website name(profile name in a website and etc'), contact link, and the website id on the contacts table.
 /// </summary>
 public static int AddContact(int userID, string websiteName, string contactLink, int websiteID)
 {
     return(UserDB.AddContact(userID, websiteName, contactLink, websiteID));
 }