9 lines
246 B
C#
9 lines
246 B
C#
|
|
using GestionIntegral.Api.Dtos.Comunicaciones;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Services.Comunicaciones
|
||
|
|
{
|
||
|
|
public interface IEmailLogService
|
||
|
|
{
|
||
|
|
Task<IEnumerable<EmailLogDto>> ObtenerHistorialPorReferencia(string referenciaId);
|
||
|
|
}
|
||
|
|
}
|