public async Task SaveDictionaries(
            List <DictionaryLanguage> languages,
            List <DictionaryNations> natons,
            List <DictionaryVehicleType> vehicleTypes,
            List <AchievementSection> achievementSections,
            List <DictionaryClanRole> clanRoles)
        {
            await _dbContext.MergeLanguages(languages);

            await _dbContext.MergeNations(natons);

            await _dbContext.MergeVehicleType(vehicleTypes);

            await _dbContext.MergeAchievementSection(achievementSections);

            await _dbContext.MergeClanRoles(clanRoles);

            await _dbContext.SaveChangesAsync();
        }