1
yangpeixing
2026-03-02 96b7df5c86df57e5b1bb92c377d5e41e0d4355b9
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;
        }
    }
}