SystemJob.cs
337 Bytes
using Hh.Mes.Service.QuartzJobService;
namespace Quartz.Job.Jobs
{
[PersistJobDataAfterExecution]
[DisallowConcurrentExecution]
public class SystemJob : JobBase
{
public override void ExecuteJob(IJobExecutionContext context)
{
new SystemJobService().Execute(null, null);
}
}
}