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

Add() public method

public Add ( CommentLike commentLike ) : void
commentLike Blog.Common.Contracts.CommentLike
return void
        public void Add(CommentLike commentLike)
        {
            using (var svc = new ServiceProxyHelper<ICommentLikesService>("CommentLikesService"))
            {
                svc.Proxy.Add(commentLike);
            }
        }
CommentLikesResource