using System.Collections.Generic; namespace Transversal.Services { public interface IXLSXExportBase { byte[] ExportExcel(IEnumerable datos); } }