TourIAm/TIAMWebApp/Shared/Interfaces/IClientNoticeSenderService.cs

17 lines
433 B
C#

using TIAM.Entities.Emails;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static AyCode.Interfaces.Enums.IMessageTypes;
namespace TIAMWebApp.Shared.Application.Interfaces
{
public interface IClientNoticeSenderService
{
public Task<string> SendNoticeAsync<TNotice>(TNotice message, int messageType) where TNotice : EmailMessage;
}
}