13 lines
263 B
C#
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();
|
|
}
|
|
}
|