Ejemplo n.º 1
0
        //function that communicated with DAL give the list of users
        //that are followed by the user
        public List <UserModel> getFollowingById(int id, string searchvalue)
        {
            FollowingRepoLayer obj = new FollowingRepoLayer();

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