1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using NXWMS.Client.Interface.Base;
- using NXWMS.Client.Interface.Instock;
- using NXWMS.Client.WebApiService.Routers.Base;
- using NXWMS.Client.WebApiService.Routers.Instock;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Services
- {
- /// <summary>
- /// 基础服务
- /// </summary>
- public static class BaseServices
- {
- /// <summary>
- /// 库区
- /// </summary>
- public static IRegionService regionService => new RegionService();
- /// <summary>
- /// 仓库
- /// </summary>
- public static IWarehouseService warehouseService => new WarehouseService();
- /// <summary>
- /// 区域
- /// </summary>
- public static IAreaService areaService => new AreaService();
- /// <summary>
- /// 库位
- /// </summary>
- public static IBinService binService => new BinLocationService();
- /// <summary>
- /// 客户
- /// </summary>
- public static ICustomerService customerService => new CustomerService();
- /// <summary>
- /// 供应商
- /// </summary>
- public static ISupplierService supplierService => new SupplierService();
- /// <summary>
- /// 包装
- /// </summary>
- public static IPackageService packageService => new PackageService();
- /// <summary>
- /// 物品类型
- /// </summary>
- public static IMaterielTypeService materielTypeService => new MaterielTypeService();
- /// <summary>
- /// 物品
- /// </summary>
- public static IMaterielService materielService => new MaterielService();
- /// <summary>
- /// 单位
- /// </summary>
- public static IUnitService unitService => new UnitService();
- /// <summary>
- /// 托盘类型
- /// </summary>
- public static IPalletTypeService palletTypeService => new PalletTypeService();
- /// <summary>
- /// 托盘
- /// </summary>
- public static IPalletService palletService => new PalletService();
- }
- }
|