Exemplo n.º 1
0
        public bool AddNotifications(IDomainNotifier notifier)
        {
            if (notifier.HasNotifications())
            {
                _domainNotificationHandler.AddNotifications(notifier);
                return(true);
            }

            return(false);
        }
Exemplo n.º 2
0
 public bool AddNotifications(IDomainNotifier notifier)
 {
     return(_domainNotificationHandler.AddNotifications(notifier));
 }
Exemplo n.º 3
0
 protected void AddNotifications(List <DomainNotification> notifications)
 {
     _domainNotificationHandler.AddNotifications(notifications);
 }