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