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

Add() 공개 메소드

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