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

Get() 공개 메소드

public Get ( int communityId ) : Community
communityId int
리턴 Blog.Common.Contracts.Community
        public Community Get(int communityId)
        {
            using (var svc = new ServiceProxyHelper<ICommunityService>("CommunityService"))
            {
                return svc.Proxy.Get(communityId);
            }
        }