main
 1namespace solidware.financials.windows.ui.presenters.validation
 2{
 3    public class Warning : Severity
 4    {
 5        public bool IsMoreSevereThan<OtherSeverity>(OtherSeverity otherSeverity) where OtherSeverity : Severity
 6        {
 7            return !(otherSeverity is Error);
 8        }
 9    }
10}