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

Add() 공개 메소드

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