public IDictionary <int, CountryDefinition> ProcessMigration(BackgroundWorker worker, DoWorkEventArgs e, OperationsManager_Deprecated managerDeprecated, string outputDir)
        {
            var sqlSerializer = new SQLSerializer(_writer, outputDir);

            var artistCountries = InternalProcess(worker, e, managerDeprecated);

            managerDeprecated.Infos = "Ecriture du script SQL...";
            sqlSerializer.SerializeCountries(CountryDefinition.CountriesLabelsAndCodesDictionnary, "countries");

            return(artistCountries);
        }
예제 #2
0
 public PublishReviewsWithNewModelProcessor(IWriter writer)
 {
     _sqlSerializer = new SQLSerializer(writer, Constants.SQLPath);
 }