Ejemplo n.º 1
0
 public ValidateAsyncObjectList(IValidateListBaseServices <ValidateAsyncObjectList, IValidateAsyncObject> services,
                                IShortNameRule <ValidateAsyncObjectList> shortNameRule,
                                IFullNameRule <ValidateAsyncObjectList> fullNameRule
                                ) : base(services)
 {
     RuleManager.AddRules(shortNameRule, fullNameRule);
     ShortNameRule = shortNameRule;
     FullNameRule  = fullNameRule;
 }
Ejemplo n.º 2
0
 public ValidateListBase(IValidateListBaseServices <T, I> services) : base(services)
 {
     this.RuleManager = services.RuleManager;
     ((ISetTarget)this.RuleManager).SetTarget(this);
 }
Ejemplo n.º 3
0
 public PersonValidateListBase(IValidateListBaseServices <L, T> services) : base(services)
 {
 }