private Politician GetPolitician(ImporterResultRowsAggregated aggregatedRow)
 {
     var politician = new Politician();
     politician.Capacity = aggregatedRow.GetPoliticalFunction();
     politician.Email = aggregatedRow.GetEmail();
     politician.Location = aggregatedRow.GetLocation();
     politician.Name = aggregatedRow.GetName();
     politician.Url = aggregatedRow.GetUrl();
     return politician;
 }