Exemple #1
0
        public IPanel <Form> Create([NotNull] IActionDefinition action)
        {
            var result = new ThreatTypeListPanel();

            if (_actions != null)
            {
                result.SetContextAwareActions(_actions);
            }
            return(result);
        }
Exemple #2
0
        public IPanel <Form> Create(IIdentity identity, out IActionDefinition action)
        {
            var result = new ThreatTypeListPanel();

            if (_actions != null)
            {
                result.SetContextAwareActions(_actions);
            }

            action = new ActionDefinition(result.Id, "ThreatTypeList", "Threat Type\nList", Resources.threat_types_big,
                                          Resources.threat_types);

            return(result);
        }