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);
            }
        }