public interface IGameRepository
abstract List<IGame>
findAll(Function1<IGame, Boolean> filter)
getAllByNotStarted()
abstract IGame
getByCode(String gameCode)
abstract Unit
add(IGame game)
removeByCode(String gameCode)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract List<IGame> findAll(Function1<IGame, Boolean> filter)
abstract List<IGame> getAllByNotStarted()
abstract IGame getByCode(String gameCode)
abstract Unit add(IGame game)
abstract Unit removeByCode(String gameCode)