Blog.Services.Helpers.Wcf.CommunityResource.Add C# (CSharp) Méthode

Add() public méthode

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