예제 #1
0
        public JsonResult GetFriendsByName(int userId, string name)
        {
            var st = _friendsService.GetFriendsByName(userId, name);

            return(Json(st, JsonRequestBehavior.AllowGet));
        }