using IMCS.CCS.Entitys;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace IMCS.CCS.Service
{
public interface IQuartzJobService
{
///
/// 开始运行一个任务调度器
///
///
Task RunAsync(Tasks tasks);
///
/// 关闭任务调度
///
///
///
Task CloseAsync(Tasks tasks);
}
}