public void PublishNotifications()
 {
     ApplicationServiceLifeCycle.Begin(false);
     try
     {
         _notificationPublisher.PublishNotifications();
         ApplicationServiceLifeCycle.Success();
     }
     catch (Exception ex)
     {
         ApplicationServiceLifeCycle.Fail(ex);
     }
 }
Exemple #2
0
 public void PublishNotifications()
 {
     _notificationPublisher.PublishNotifications();
 }