public static void Notify(DomainNotification args)
 {
     if (args == null) return;
     if(Container != null)
         ((IDomainNotificationHandle)Container.GetService(typeof(IDomainNotificationHandle))).Handle(args);
 }
 public void Handle(DomainNotification args)
 {
     _notifications.Add(args);
 }