123456789101112131415161718192021222324 |
- using NXWMS.Client.Interface;
- using NXWMS.Client.Model.AppModels.Result;
- using NXWMS.Client.WebApiService;
- using NXWMS.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Services
- {
- /// <summary>
- /// 配置服务
- /// </summary>
- public static class ConfigServices
- {
- /// <summary>
- /// 配置服务
- /// </summary>
- public static IConfigService configService => new ConfigService();
-
- }
- }
|