Example #1
0
 public string[] Process(IGameMaster gameMaster)
 {
     if (gameMaster.GameEndDate > ReceiveDate || gameMaster.GameStartDate > ReceiveDate || gameMaster.IsGameFinished)
     {
         return(null);
     }
     return(gameMaster.HandleData(this));
 }