Exemplo n.º 1
0
 public ConstraintModel(ConstraintAttribute attribute) : base(attribute)
 {
 }
Exemplo n.º 2
0
 //[DebuggerStepThrough]
 ////[DebuggerHidden]
 //[DebuggerNonUserCode]
 public bool IsValid(ConstraintAttribute annotation, object value)
 {
     return annotation.IsValid(value);
 }
Exemplo n.º 3
0
 protected AbstractConstraintModel(ConstraintAttribute annotation)
 {
     this.Annotation = annotation;
 }
Exemplo n.º 4
0
 public ConstraintInstance(Constraint constraint, ConstraintAttribute annotation)
 {
     this.constraint = constraint;
     this.Annotation = annotation;
 }
Exemplo n.º 5
0
 public ConstraintDeclaration(ConstraintAttribute annontation, Type declaringType)
 {
     this.annontation = annontation;
     this.declaringType = declaringType;
 }