Esempio n. 1
0
 public Rule(string title, DateRange activePeriod, CalculationMethod calculationMethod)
     : this(title, activePeriod, EmptyCondition.Instance, calculationMethod)
 {
 }
Esempio n. 2
0
 public Rule(int id, string title, ISpecification <Applicant> condition, Point points, DateRange activePeriod)
 {
     Id           = id;
     Title        = title;
     Condition    = condition;
     ResultPoint  = points;
     ActivePeriod = activePeriod;
 }