using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_IStockService;
|
|
namespace WIDESEA_StockService
|
{
|
public class StockSerivce:IStockService
|
{
|
public IStockInfoDetailService StockInfoDetailService { get; }
|
|
public IStockInfoService StockInfoService { get; }
|
|
public IInventoryInfoService InventoryInfoService { get; }
|
|
public IInventoryBatchService InventoryBatchService { get; }
|
|
public StockSerivce(IStockInfoDetailService stockInfoDetailService, IStockInfoService stockInfoService, IInventoryInfoService inventoryInfoService, IInventoryBatchService inventoryBatchService)
|
{
|
StockInfoDetailService = stockInfoDetailService;
|
StockInfoService = stockInfoService;
|
InventoryInfoService = inventoryInfoService;
|
InventoryBatchService = inventoryBatchService;
|
}
|
}
|
}
|