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

Update() 공개 메소드

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