RuleServices.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using NXWMS.Client.Interface.Rule;
  2. using NXWMS.Client.WebApiService.Routers.Rule;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. namespace NXWMS.Services
  8. {
  9. /// <summary>
  10. /// 规则服务
  11. /// </summary>
  12. public static class RuleServices
  13. {
  14. /// <summary>
  15. /// 上架规则
  16. /// </summary>
  17. public static IPutAwayRuleService putAwayRuleService => new PutAwayRuleService();
  18. /// <summary>
  19. /// 订单分配规则
  20. /// </summary>
  21. public static IOrderDistributionRuleService orderDistributionRuleService => new OrderDistributionRuleService();
  22. /// <summary>
  23. /// 导入模版
  24. /// </summary>
  25. public static IImportTemplateService importTemplateService => new ImportTemplateService();
  26. /// <summary>
  27. /// 打印模版
  28. /// </summary>
  29. public static IPrintTemplateService printTemplateService => new PrintTemplateService();
  30. /// <summary>
  31. /// 定时任务
  32. /// </summary>
  33. public static ITaskTimedService taskTimedService => new TaskTimedService();
  34. }
  35. }