1
wankeda
2026-03-02 ea4adbde9c64181369161e851925e06d52260eba
WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockSerivce.cs
@@ -7,21 +7,24 @@
namespace WIDESEA_StockService
{
    public class StockSerivce:IStockService
    public class StockSerivce : IStockService
    {
        public IStockInfoDetailService StockInfoDetailService { get; }
        public IStockInfoService StockInfoService { get; }
        public IStockInfoDetailCPService StockInfoServiceCPService { get; }
        public IStockInfoDetail_HtyService StockInfoDetail_HtyService { get; }
        public IStockInfo_HtyService StockInfo_HtyService { get; }
        public StockSerivce(IStockInfoDetailService stockInfoDetailService, IStockInfoService stockInfoService, IStockInfoDetail_HtyService stockInfoDetail_HtyService, IStockInfo_HtyService stockInfo_HtyService)
        public StockSerivce(IStockInfoDetailService stockInfoDetailService, IStockInfoService stockInfoService, IStockInfoDetail_HtyService stockInfoDetail_HtyService, IStockInfo_HtyService stockInfo_HtyService, IStockInfoDetailCPService stockInfoDetailCPService)
        {
            StockInfoDetailService = stockInfoDetailService;
            StockInfoService = stockInfoService;
            StockInfoDetail_HtyService = stockInfoDetail_HtyService;
            StockInfo_HtyService = stockInfo_HtyService;
            StockInfoServiceCPService = stockInfoDetailCPService;
        }
    }
}