using Infrastructure.Model; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using ZR.Model.System; namespace ZR.Tasks { public interface ITaskSchedulerServer { Task StartTaskScheduleAsync(); Task StopTaskScheduleAsync(); Task AddTaskScheduleAsync(SysTasks tasksQz); Task PauseTaskScheduleAsync(SysTasks tasksQz); Task ResumeTaskScheduleAsync(SysTasks tasksQz); Task DeleteTaskScheduleAsync(SysTasks tasksQz); Task RunTaskScheduleAsync(SysTasks tasksQz); Task UpdateTaskScheduleAsync(SysTasks tasksQz); } }