Blog.Services.Helpers.Wcf.NotificationResource.PublishCommentAdded C# (CSharp) Méthode

PublishCommentAdded() public méthode

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