| | |
| | | |
| | | namespace WIDESEA_BasicService |
| | | { |
| | | /// <summary> |
| | | /// 基础信息服务聚合实现类 |
| | | /// </summary> |
| | | public class BasicService : IBasicService |
| | | { |
| | | /// <summary> |
| | | /// 托盘编码业务层 |
| | | /// </summary> |
| | | public IPalletCodeInfoService PalletCodeInfoService { get; } |
| | | |
| | | /// <summary> |
| | | /// 货位业务层 |
| | | /// </summary> |
| | | public ILocationInfoService LocationInfoService { get; } |
| | | |
| | | /// <summary> |
| | | /// 物料业务层 |
| | | /// </summary> |
| | | public IMaterielInfoService MaterielInfoService { get; } |
| | | |
| | | /// <summary> |
| | | /// 仓库业务层 |
| | | /// </summary> |
| | | public IWarehouseService WarehouseService { get; } |
| | | |
| | | /// <summary> |
| | | /// 物料编码业务层 |
| | | /// </summary> |
| | | public IMaterielCodeInfoService MaterielCodeInfoService { get; } |
| | | |
| | | public BasicService(ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IWarehouseService warehouseService, IPalletCodeInfoService palletCodeInfoService, IMaterielCodeInfoService materielCodeInfoService) |
| | | /// <summary> |
| | | /// 构造函数 |
| | | /// </summary> |
| | | /// <param name="locationInfoService">货位信息服务</param> |
| | | /// <param name="materielInfoService">物料信息服务</param> |
| | | /// <param name="warehouseService">仓库信息服务</param> |
| | | /// <param name="palletCodeInfoService">托盘编码信息服务</param> |
| | | /// <param name="materielCodeInfoService">物料编码信息服务</param> |
| | | public BasicService( |
| | | ILocationInfoService locationInfoService, |
| | | IMaterielInfoService materielInfoService, |
| | | IWarehouseService warehouseService, |
| | | IPalletCodeInfoService palletCodeInfoService, |
| | | IMaterielCodeInfoService materielCodeInfoService) |
| | | { |
| | | LocationInfoService = locationInfoService; |
| | | MaterielInfoService = materielInfoService; |