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

Get() public method

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