14 lines
365 B
C#
14 lines
365 B
C#
namespace Kreta.Job.Tasks.Core
|
|
{
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Hangfire;
|
|
using Kreta.Job.Tasks.Core.Models;
|
|
|
|
public interface IEmailJob
|
|
{
|
|
[AutomaticRetry(Attempts = 5)]
|
|
Task SendMailAsync(EmailModel emailModel);
|
|
void SendMailMessages(List<EmailModel> emailJobList);
|
|
}
|
|
}
|