private static IBoundedFacet Create(BoundedAttribute attribute, ISpecification holder)
 {
     return(attribute == null ? null : new BoundedFacet(holder));
 }
 private static IBoundedFacet Create(BoundedAttribute attribute, ISpecification holder) {
     return attribute == null ? null : new BoundedFacet(holder);
 }
 private static IBoundedFacet Create(BoundedAttribute attribute, IFacetHolder holder) {
     return attribute == null ? null : new BoundedFacetAnnotation(holder);
 }
 private static IBoundedFacet Create(BoundedAttribute attribute, ISpecification holder) => attribute is null ? null : new BoundedFacet(holder);