Ejemplo n.º 1
0
 public CheckIfGameShouldBeFinished()
 {
     Test     = activity => Please.Check(new HasAnyChallengeUnfinished(activity.From.Id));
     Positive = new CompleteUserChallenge();
     Negative = new FinishUserGame();
 }
Ejemplo n.º 2
0
 public CheckIfAnyChallangeIsUnfinished()
 {
     Test     = activity => Please.Check(new HasAnyChallengeUnfinished(activity.From.Id));
     Positive = new GiveUserChallenge();
     Negative = new FinishUserGame();
 }