示例#1
0
        //public bool RemoveFriend(FRIEND friend)
        //{
        //    bool returnValue = false;
        //    returnValue = friendRepo.Remove(friend);
        //    if (returnValue ==  true)
        //    {
        //        notifManager.RemoveFriendNotification(friend.USER_ID , friend.FRIEND_ID);
        //    }

        //    return returnValue;
        //}

        public bool CheckIfFriendExist(int userID, int friendID)
        {
            bool returnValue = false;

            returnValue = friendRepo.CheckIfFriendExist(userID, friendID);
            return(returnValue);
        }