Exemplo n.º 1
0
 public Annotation(
     IAnnotationProperty property,
     object value
     ) : base()
 {
     _property = property;
     _value    = value;
 }
Exemplo n.º 2
0
 public Validation() : base("Validation")
 {
     Restriction = new AnnotationProperty(
         this,
         "Restriction");
     SubPropertyName = new AnnotationProperty(
         this,
         "SubPropertyName");
     RangeValidated = new AnnotationProperty(
         this,
         "RangeValidated");
 }