Ejemplo n.º 1
0
        //function that communicated with DAL to unfollow user
        public void unFollowById(int id, int idToUnfollow)
        {
            FollowingRepoLayer obj = new FollowingRepoLayer();

            obj.unFollowById(id, idToUnfollow);
        }