public async Task <bool> FollowUser(string followerid, string followeeid) { Repository.Models.FollowingUser newFollow = new Repository.Models.FollowingUser(); newFollow.FollowerUserId = followerid; newFollow.FolloweeUserId = followeeid; return(await _repo.FollowUser(newFollow)); }