10 lines
179 B
C#
10 lines
179 B
C#
using Hangfire;
|
|
|
|
namespace Kreta.Job.Tasks.Core
|
|
{
|
|
public interface IEESZTInterfaceJob
|
|
{
|
|
[AutomaticRetry(Attempts = 1)]
|
|
void GetEESZTAllomany();
|
|
}
|
|
}
|