예제 #1
0
파일: CommonRules.cs 프로젝트: ishui/rms2
 public RangeRuleArgs(string propertyName, T minValue, T maxValue) : base(propertyName)
 {
     this.range = new CommonRules.Range <T>(minValue, maxValue);
 }
예제 #2
0
파일: CommonRules.cs 프로젝트: ishui/rms2
 public RangeRuleArgs(string propertyName, CommonRules.Range <T> range) : base(propertyName)
 {
     this.range = range;
 }