コード例 #1
0
ファイル: UserDAO.cs プロジェクト: Dmitriy91/skype
        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;
        }