private async Task SyncCiphersAsync(string userId, List <CipherResponse> response) { var ciphers = response.ToDictionary(c => c.Id, c => new CipherData(c, userId)); await _cipherService.ReplaceAsync(ciphers); }