public static void AddAttribute <TAttribute>(this IAttributable attributable, TAttribute attribute) where TAttribute : class, IPropertyAttribute
 {
     if (null == attributable)
     {
         return;
     }
     UTinyPropertyMetaData <IAttributable> .RegisterAttribute(attributable, attribute);
 }
 public static void AddAttribute <TAttribute>(this IProperty property, TAttribute attribute) where TAttribute : class, IPropertyAttribute
 {
     if (null == property)
     {
         return;
     }
     UTinyPropertyMetaData <IProperty> .RegisterAttribute(property, attribute);
 }