Esempio n. 1
0
 public ActionOpportunity IfConditionIsFalse(string conditionName)
 {
     Criterion = new OpportunityCriteria.IfObjectiveGained(conditionName, true); return(this);
 }
Esempio n. 2
0
 public ActionOpportunity IfStateIs(StateAspect benchmark, StateChangeCriterion criterion)
 {
     Criterion = new OpportunityCriteria.IfStateIs(benchmark, criterion); return(this);
 }
Esempio n. 3
0
 public ActionOpportunity IfObjectiveNotGained(string objectiveName)
 {
     Criterion = new OpportunityCriteria.IfObjectiveGained(objectiveName, true); return(this);
 }
Esempio n. 4
0
 public ActionOpportunity AlwaysAvailable()
 {
     Criterion = new OpportunityCriteria.AlwaysAvailable(); return(this);
 }