completed background job scheduler
This commit is contained in:
19
Oqtane.Client/Services/Interfaces/IJobLogService.cs
Normal file
19
Oqtane.Client/Services/Interfaces/IJobLogService.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using Oqtane.Models;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Oqtane.Services
|
||||
{
|
||||
public interface IJobLogService
|
||||
{
|
||||
Task<List<JobLog>> GetJobLogsAsync();
|
||||
|
||||
Task<JobLog> GetJobLogAsync(int JobLogId);
|
||||
|
||||
Task<JobLog> AddJobLogAsync(JobLog JobLog);
|
||||
|
||||
Task<JobLog> UpdateJobLogAsync(JobLog JobLog);
|
||||
|
||||
Task DeleteJobLogAsync(int JobLogId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user