oqtane.framework/Oqtane.Server/Repository/Interfaces/IJobRepository.cs
2019-11-15 08:42:31 -05:00

15 lines
302 B
C#

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);
}
}