using Hangfire; namespace Kreta.Job.Tasks.Core { public interface ITavolletJob { [AutomaticRetry(Attempts = 0)] void SyncTavolletIktatott(); [AutomaticRetry(Attempts = 0)] void SendOutTavolletReminderEmails(); } }