public void Should_CreateFriendShip()
        {
            CreateFriendshipInput input = new CreateFriendshipInput
            {
                UserName1 = "Hans",
                UserName2 = "Alex"
            };

            _memberAppService.CreateFriendship(input);
        }