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