25 lines
626 B
C#
25 lines
626 B
C#
using EgwCoreLib.Lux.Data.DbModel.Job;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Repository.Job
|
|
{
|
|
public interface IJobTaskRepository : IBaseRepository
|
|
{
|
|
#region Public Methods
|
|
|
|
Task<bool> AddAsync(JobTaskModel entity);
|
|
|
|
Task<bool> DeleteAsync(JobTaskModel entity);
|
|
|
|
Task<List<JobTaskModel>> GetAllAsync();
|
|
|
|
Task<JobTaskModel?> GetByIdAsync(int recId);
|
|
|
|
Task<bool> MergeTagsAsync(int JobID, List<string> reqTagList);
|
|
|
|
Task<bool> MoveAsync(JobTaskModel selRec, bool moveUp);
|
|
|
|
Task<bool> UpdateAsync(JobTaskModel entity);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |