protected virtual void InitVisibleWhenNotAuthenticated(VisibleWhenNotAuthenticated data, VisibleWhenNotAuthenticated group)
        {
            var handler = new InitVisibleWhenNotAuthenticated();

            handler.System = this;
            handler.Event  = data;
            handler.Group  = group;
            handler.Execute();
        }
        protected void InitVisibleWhenNotAuthenticatedFilter(VisibleWhenNotAuthenticated data)
        {
            var GroupVisibleWhenNotAuthenticated = VisibleWhenNotAuthenticatedManager[data.EntityId];

            if (GroupVisibleWhenNotAuthenticated == null)
            {
                return;
            }
            if (!GroupVisibleWhenNotAuthenticated.Enabled)
            {
                return;
            }
            this.InitVisibleWhenNotAuthenticated(data, GroupVisibleWhenNotAuthenticated);
        }
 protected void InitVisibleWhenNotAuthenticatedFilter(VisibleWhenNotAuthenticated data) {
     var GroupVisibleWhenNotAuthenticated = VisibleWhenNotAuthenticatedManager[data.EntityId];
     if (GroupVisibleWhenNotAuthenticated == null) {
         return;
     }
     if (!GroupVisibleWhenNotAuthenticated.Enabled) {
         return;
     }
     this.InitVisibleWhenNotAuthenticated(data, GroupVisibleWhenNotAuthenticated);
 }
 protected virtual void InitVisibleWhenNotAuthenticated(VisibleWhenNotAuthenticated data, VisibleWhenNotAuthenticated group) {
     var handler = new InitVisibleWhenNotAuthenticated();
     handler.System = this;
     handler.Event = data;
     handler.Group = group;
     handler.Execute();
 }