Example #1
0
        public IActionResult AddFriend(int memberId, int friendId)
        {
            _repo.AddAsFriend(memberId, friendId);

            return(Ok());
        }