| using Microsoft.Extensions.DependencyInjection; | 
| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Reflection; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
|   | 
| namespace WIDESEA_Core.Extensions | 
| { | 
|   | 
|     /// <summary> | 
|     /// 任务调度 启动服务 | 
|     /// </summary> | 
|     public static class JobSetup | 
|     { | 
|         public static void AddJobSetup(this IServiceCollection services) | 
|         { | 
|             if (services == null) throw new ArgumentNullException(nameof(services)); | 
|              | 
|         } | 
|     } | 
| } |