9 lines
174 B
C#
9 lines
174 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Transversal.Services
|
|
{
|
|
public interface IXLSXExportBase
|
|
{
|
|
byte[] ExportExcel<T>(IEnumerable<T> datos);
|
|
}
|
|
} |