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