phronCare/Services/Interfaces/IXLSXExport.cs

14 lines
252 B
C#
Raw Normal View History

2025-01-24 19:17:26 -03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Services.Interfaces
{
public interface IXLSXExport
{
byte[] ExportExcel<T>(IEnumerable<T> datos);
}
}