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);
            }
        }