using WIDESEA_Core;
|
|
namespace WIDESEA_IBasicService
|
{
|
/// <summary>
|
/// 基础信息服务聚合接口
|
/// </summary>
|
public interface IBasicService : IDependency
|
{
|
/// <summary>
|
/// 货位业务层
|
/// </summary>
|
ILocationInfoService LocationInfoService { get; }
|
|
/// <summary>
|
/// 物料业务层
|
/// </summary>
|
IMaterielInfoService MaterielInfoService { get; }
|
|
/// <summary>
|
/// 仓库业务层
|
/// </summary>
|
IWarehouseService WarehouseService { get; }
|
|
/// <summary>
|
/// 托盘编码业务层
|
/// </summary>
|
IPalletCodeInfoService PalletCodeInfoService { get; }
|
|
/// <summary>
|
/// 物料编码业务层
|
/// </summary>
|
IMaterielCodeInfoService MaterielCodeInfoService { get; }
|
}
|
}
|