12345678910111213141516171819202122232425262728293031323334353637383940 |
- using NXWMS.Client.Interface.Rule;
- using NXWMS.Client.WebApiService.Routers.Rule;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Services
- {
- /// <summary>
- /// 规则服务
- /// </summary>
- public static class RuleServices
- {
- /// <summary>
- /// 上架规则
- /// </summary>
- public static IPutAwayRuleService putAwayRuleService => new PutAwayRuleService();
- /// <summary>
- /// 订单分配规则
- /// </summary>
- public static IOrderDistributionRuleService orderDistributionRuleService => new OrderDistributionRuleService();
- /// <summary>
- /// 导入模版
- /// </summary>
- public static IImportTemplateService importTemplateService => new ImportTemplateService();
- /// <summary>
- /// 打印模版
- /// </summary>
- public static IPrintTemplateService printTemplateService => new PrintTemplateService();
- /// <summary>
- /// 定时任务
- /// </summary>
- public static ITaskTimedService taskTimedService => new TaskTimedService();
- }
- }
|