Exemplo n.º 1
0
 public bool IsGreaterOrEqual(JourneyPosition other)
 {
     return(!IsMinor(other));
 }
Exemplo n.º 2
0
 public JourneyPosition(JourneyPosition newJourneyPosition)
 {
     Stage         = newJourneyPosition.Stage;
     LearningBlock = newJourneyPosition.LearningBlock;
     PlaySession   = newJourneyPosition.PlaySession;
 }
Exemplo n.º 3
0
 public bool IsMinorOrEqual(JourneyPosition other)
 {
     return(IsMinor(other) || Equals(other));
 }