completed background job scheduler
This commit is contained in:
14
Oqtane.Server/Repository/Interfaces/IJobRepository.cs
Normal file
14
Oqtane.Server/Repository/Interfaces/IJobRepository.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public interface IJobRepository
|
||||
{
|
||||
IEnumerable<Job> GetJobs();
|
||||
Job AddJob(Job Job);
|
||||
Job UpdateJob(Job Job);
|
||||
Job GetJob(int JobId);
|
||||
void DeleteJob(int JobId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user