using System; using System.Data; namespace ExcelExport.Base { public interface IExport { public bool Export(DataTable dt, string filenPath); public bool Export(DataSet ds, string filePath); } }