Ejemplo n.º 1
0
 public static IfFilterExpression IfClassImplements <TType>(this ConventionExpression conventionExpression)
 {
     return(conventionExpression.IfClass(t => t.Implements <TType>()));
 }
Ejemplo n.º 2
0
 public static IfFilterExpression IfClassIs <TType>(this ConventionExpression conventionExpression)
 {
     return(conventionExpression.IfClass(t => t == typeof(TType)));
 }