Blog.Services.Helpers.Wcf.CommentLikesResource.Get C# (CSharp) Метод

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

public Get ( int commentId ) : List
commentId int
Результат List
        public List<CommentLike> Get(int commentId)
        {
            using (var svc = new ServiceProxyHelper<ICommentLikesService>("CommentLikesService"))
            {
                return svc.Proxy.Get(commentId);
            }
        }
CommentLikesResource