21 lines
498 B
C#
21 lines
498 B
C#
using EgwCoreLib.Lux.Data.DbModel.Job;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Services.Job
|
|
{
|
|
public interface IJobTaskService
|
|
{
|
|
#region Public Methods
|
|
|
|
Task<bool> DeleteAsync(JobTaskModel entity);
|
|
|
|
Task<List<JobTaskModel>> GetAllAsync();
|
|
|
|
Task<bool> MergeTagsAsync(int JobID, List<string> reqTagList);
|
|
|
|
Task<bool> MoveAsync(JobTaskModel selRec, bool moveUp);
|
|
|
|
Task<bool> UpsertAsync(JobTaskModel upsRec);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |