17 lines
No EOL
309 B
C#
17 lines
No EOL
309 B
C#
using API.Interfaces;
|
|
using Hangfire;
|
|
|
|
namespace API.Services
|
|
{
|
|
public class TaskScheduler : ITaskScheduler
|
|
{
|
|
private readonly BackgroundJobServer _client;
|
|
|
|
public TaskScheduler()
|
|
{
|
|
_client = new BackgroundJobServer();
|
|
}
|
|
|
|
|
|
}
|
|
} |