initial commit
This commit is contained in:
16
Interfaces/IJobInterface.cs
Normal file
16
Interfaces/IJobInterface.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Microsoft.SelfService.Portal.Core.API.Models;
|
||||
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Interfaces
|
||||
{
|
||||
public interface IJobInterface : IAbstractInterface
|
||||
{
|
||||
ICollection<JobModel> GetJobs();
|
||||
JobModel GetJobById(Guid Id);
|
||||
|
||||
bool CreateJobById(JobModel job);
|
||||
bool UpdateJobById(JobModel job);
|
||||
bool DeleteJobById(JobModel job);
|
||||
|
||||
bool CheckJobById(Guid Id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user