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

Update() public method

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