completed background job scheduler
This commit is contained in:
14
Oqtane.Server/Repository/Interfaces/IJobLogRepository.cs
Normal file
14
Oqtane.Server/Repository/Interfaces/IJobLogRepository.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public interface IJobLogRepository
|
||||
{
|
||||
IEnumerable<JobLog> GetJobLogs();
|
||||
JobLog AddJobLog(JobLog JobLog);
|
||||
JobLog UpdateJobLog(JobLog JobLog);
|
||||
JobLog GetJobLog(int JobLogId);
|
||||
void DeleteJobLog(int JobLogId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user