// GET: Friends
        public ActionResult Index(long accountId)
        {
            var friends = _friendsService.GetOutgoingRequestsFriendshipByAccount(accountId);

            return(View(friends));
        }