コード例 #1
0
 private static IExecutedFacet Create(ExecutedAttribute attribute, ISpecification holder)
 {
     return(attribute == null ? null : new ExecutedFacetAnnotation(attribute.Value, holder));
 }
コード例 #2
0
 private static IExecutedFacet Create(ExecutedAttribute attribute, ISpecification holder) {
     return attribute == null ? null : new ExecutedFacetAnnotation(attribute.Value, holder);
 }
 private static IExecutedFacet Create(ExecutedAttribute attribute, ISpecification holder) => attribute is null ? null : new ExecutedFacetAnnotation(attribute.Value, holder);
 private static IExecutedFacet Create(ExecutedAttribute attribute, IFacetHolder holder) {
     return attribute == null ? null : new ExecutedFacetAnnotation(attribute.Value.ToWhere(), holder);
 }