1234567891011121314151617181920 |
- using Common.Logging;
- using Quartz;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication1
- {
- public class Class1 : IJob
- {
- private readonly ILog _logger = LogManager.GetLogger(typeof(Class1));
- public void Execute(IJobExecutionContext context)
- {
- Console.WriteLine("this is job1");
-
- }
- }
- }
|