public static bool AddContact(int userID, int contactID) { SkypeDataClassesDataContext sdc = new SkypeDataClassesDataContext(); int result = sdc.SP_Contact_INS(userID, contactID); if (result == 1) return true; return false; }