kreta/Kreta.Job.Tasks.Core/ITavolletJob.cs
2024-03-13 00:33:46 +01:00

13 lines
263 B
C#

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