/// <summary>
 /// Output a CSV file from the DataTable returned from the OutputScannedData Method.
 /// </summary>
 /// <param name="outputLocation">Where the file should be output too.</param>
 /// <param name="fileName">new name for the output file.</param>
 /// <param name="cleanedData">provide a datatable.</param>
 private void ReturnReformatDataTableAsCsv(DataTable cleanedData, string outputLocation, string fileName)
 {
     New_Wrapper.DataHandler csvHandler = new New_Wrapper.DataHandler();
     csvHandler.GenerateCSV(cleanedData, outputLocation, fileName, "#");
 }