Blog.Services.Helpers.Wcf.NotificationResource.PublishCommentAdded C# (CSharp) Метод

PublishCommentAdded() публичный Метод

public PublishCommentAdded ( CommentAdded commentAdded ) : void
commentAdded Blog.Common.Contracts.ViewModels.SocketViewModels.CommentAdded
Результат void
        public void PublishCommentAdded(CommentAdded commentAdded)
        {
            using (var svc = new ServiceProxyHelper<INotificationService>("NotificationService"))
            {
                svc.Proxy.PublishCommentAdded(commentAdded);
            }
        }