WorkOrderJob.cs 386 Bytes
using Hh.Mes.Service.QuartzJobService;
using System;
using System.Collections.Generic;
using System.Text;

namespace Quartz.Job.Jobs
{
    internal class WorkOrderJob : JobBase
    {
        public override void ExecuteJob(IJobExecutionContext context)
        {
            /// throw new NotImplementedException();
            new WorkOrderJobService().Execute();
        }
    }
}