public bool FollowById(UserFollowerModel followerdata)
        {
            FollowingBusinessLogic FollowingBL = new FollowingBusinessLogic();

            return(FollowingBL.FollowById(followerdata));
        }
        public void unFollowById(int id, int idToUnfollow)
        {
            FollowingBusinessLogic FollowingBL = new FollowingBusinessLogic();

            FollowingBL.unFollowById(id, idToUnfollow);
        }
        public List <UserModel> getFollowingById(int id, string searchvalue)
        {
            FollowingBusinessLogic FollowingBL = new FollowingBusinessLogic();

            return(FollowingBL.getFollowingById(id, searchvalue));
        }