171819202122232425
super(DrawLotteryCommand.class); } public void handleMessage(DrawLotteryCommand message) { Lottery lottery = repository.getByVersionedId(Lottery.class, message.getLotteryId()); lottery.draw(); } }