19 lines
440 B
C#
19 lines
440 B
C#
using EgwCoreLib.Lux.Data.DbModel.Job;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Services.Job
|
|
{
|
|
public interface IJobStepService
|
|
{
|
|
#region Public Methods
|
|
|
|
Task<bool> DeleteAsync(JobStepModel entity);
|
|
|
|
Task<List<JobStepModel>> GetByParentAsync(int jobID);
|
|
|
|
Task<bool> MoveAsync(JobStepModel selRec, bool moveUp);
|
|
|
|
Task<bool> UpsertAsync(JobStepModel upsRec);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |