//function that communicated with DAL to follow user
        public bool FollowById(UserFollowerModel followerdata)
        {
            FollowingRepoLayer obj = new FollowingRepoLayer();

            return(obj.FollowById(followerdata));
        }