Beispiel #1
0
        public int GetShooterNumber()
        {
            ShooterNumberConfig config = _shooterNumberConfigDataStore.FindById(ConfigId);
            int nextShooterNumber      = config.LastGivenShooterNumber + config.ShooterNumberIncrement;

            config.LastGivenShooterNumber = nextShooterNumber;
            _shooterNumberConfigDataStore.Update(config);
            return(nextShooterNumber);
        }