| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core; |
| | | |
| | | namespace WIDESEA_IRecordService |
| | | { |
| | | /// <summary> |
| | | /// 记录服务聚合接口 |
| | | /// </summary> |
| | | public interface IRecordService : IDependency |
| | | { |
| | | ILocationStatusChangeRecordService LocationStatusChangeRecordSetvice { get; } |
| | | /// <summary> |
| | | /// 货位状态变更记录服务 |
| | | /// </summary> |
| | | ILocationStatusChangeRecordService LocationStatusChangeRecordService { get; } |
| | | |
| | | /// <summary> |
| | | /// 库存数量变更记录服务 |
| | | /// </summary> |
| | | IStockQuantityChangeRecordService StockQuantityChangeRecordService { get; } |
| | | } |
| | | } |