| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_IRecordService; |
| | | using WIDESEA_IRecordService; |
| | | |
| | | namespace WIDESEA_RecordService |
| | | { |
| | | /// <summary> |
| | | /// 记录服务聚合实现类 |
| | | /// </summary> |
| | | public class RecordService : IRecordService |
| | | { |
| | | public ILocationStatusChangeRecordService LocationStatusChangeRecordSetvice { get; } |
| | | /// <summary> |
| | | /// 货位状态变更记录服务 |
| | | /// </summary> |
| | | public ILocationStatusChangeRecordService LocationStatusChangeRecordService { get; } |
| | | |
| | | /// <summary> |
| | | /// 库存数量变更记录服务 |
| | | /// </summary> |
| | | public IStockQuantityChangeRecordService StockQuantityChangeRecordService { get; } |
| | | |
| | | public RecordService(ILocationStatusChangeRecordService locationStatusChangeRecordSetvice, IStockQuantityChangeRecordService stockQuantityChangeRecordService) |
| | | /// <summary> |
| | | /// 构造函数 |
| | | /// </summary> |
| | | /// <param name="locationStatusChangeRecordService">货位状态变更记录服务</param> |
| | | /// <param name="stockQuantityChangeRecordService">库存数量变更记录服务</param> |
| | | public RecordService( |
| | | ILocationStatusChangeRecordService locationStatusChangeRecordService, |
| | | IStockQuantityChangeRecordService stockQuantityChangeRecordService) |
| | | { |
| | | LocationStatusChangeRecordSetvice = locationStatusChangeRecordSetvice; |
| | | LocationStatusChangeRecordService = locationStatusChangeRecordService; |
| | | StockQuantityChangeRecordService = stockQuantityChangeRecordService; |
| | | } |
| | | } |