18 lines
467 B
C#
18 lines
467 B
C#
using AyCode.Interfaces.Messages;
|
|
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;
|
|
|
|
}
|
|
}
|