19 lines
458 B
C#
19 lines
458 B
C#
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
|
|
}
|
|
} |