Blog.Services.Helpers.Wcf.NotificationResource.PublishCommentAdded C# (CSharp) Method

PublishCommentAdded() public method

public PublishCommentAdded ( CommentAdded commentAdded ) : void
commentAdded Blog.Common.Contracts.ViewModels.SocketViewModels.CommentAdded
return void
        public void PublishCommentAdded(CommentAdded commentAdded)
        {
            using (var svc = new ServiceProxyHelper<INotificationService>("NotificationService"))
            {
                svc.Proxy.PublishCommentAdded(commentAdded);
            }
        }