10 lines
174 B
C#
10 lines
174 B
C#
using Hangfire;
|
|
|
|
namespace Kreta.Job.Tasks.Core
|
|
{
|
|
public interface ISapJob
|
|
{
|
|
[AutomaticRetry(Attempts = 0)]
|
|
void SyncJobKeretEsTavollet();
|
|
}
|
|
}
|