WmsTaskManageService.cs 351 B

1234567891011121314
  1. using NXWMS.Client.Interface.WmsTask;
  2. using NXWMS.Client.WebApiService.Routers.WmsTask;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. namespace NXWMS.Services
  8. {
  9. public static class WmsTaskManageService
  10. {
  11. public static IWmsTskTaskService wmsTskTaskService => new WmsTskTaskService();
  12. }
  13. }