Blog.Services.Helpers.Wcf.PostLikesResource.Get C# (CSharp) 메소드

Get() 공개 메소드

public Get ( int postId ) : List
postId int
리턴 List
        public List<PostLike> Get(int postId)
        {
            using (var svc = new ServiceProxyHelper<IPostLikesService>("PostLikesService"))
            {
                return svc.Proxy.Get(postId);
            }
        }
PostLikesResource