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 emailJobList); } }