private static Company GetCompany(ImporterResultRowsAggregated aggregatedRow)
 {
     var organisation = new Company();
     organisation.Name = aggregatedRow.GetName();
     organisation.Location = aggregatedRow.GetLocation();
     organisation.Url = aggregatedRow.GetUrl();
     organisation.Industry = aggregatedRow.GetBranche();
     organisation.Size = aggregatedRow.GetBeschaeftigte();
     organisation.WelfareBalanceFor2011 = aggregatedRow.IsBilanz2011();
     organisation.WelfareBalanceFor2012 = aggregatedRow.IsBilanz2012();
     organisation.Email = aggregatedRow.GetEmail();
     return organisation;
 }