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