Blog.Services.Helpers.Wcf.TagsResource.Add C# (CSharp) Method

Add() public method

public Add ( Tag tag ) : Tag
tag Blog.Common.Contracts.Tag
return Blog.Common.Contracts.Tag
        public Tag Add(Tag tag)
        {
            using (var svc = new ServiceProxyHelper<ITagsService>("TagsService"))
            {
                return svc.Proxy.Add(tag);
            }
        }