public static IfFilterExpression IfClassImplements <TType>(this ConventionExpression conventionExpression)
 {
     return(conventionExpression.IfClass(t => t.Implements <TType>()));
 }
 public static IfFilterExpression IfClassIs <TType>(this ConventionExpression conventionExpression)
 {
     return(conventionExpression.IfClass(t => t == typeof(TType)));
 }