Blog.Services.Helpers.Rest.CommentLikesRestResource.Get C# (CSharp) Метод

Get() публичный Метод

public Get ( int commentId ) : List
commentId int
Результат List
        public List<CommentLike> Get(int commentId)
        {
            using (var svc = new HttpClientHelper())
            {
                var result = JsonHelper.DeserializeJson<List<CommentLike>>(
                    svc.Get(Constants.BlogRestUrl, string.Format("comments/{0}/likes", commentId)));
                return result;
            }
        }
CommentLikesRestResource