Blog.Services.Helpers.Wcf.CommentsResource.Get C# (CSharp) Method

Get() public method

public Get ( int commentId ) : Comment
commentId int
return Blog.Common.Contracts.Comment
        public Comment Get(int commentId)
        {
            using (var svc = new ServiceProxyHelper<ICommentsService>("CommentsService"))
            {
                return svc.Proxy.Get(commentId);
            }
        }