using System.Collections.Generic; using System.ComponentModel; using System.Data; using DelftTools.Utils.Csv.Importer; namespace DelftTools.Controls.Swf.Csv { public interface ICsvDataSelectionWizardPage : IWizardPage, IComponent { IDictionary FieldToColumnMapping { get; } IEnumerable Filters { get; } void SetData(DataTable dataTable, IEnumerable requiredFields); } }