using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEAWCS_IStockService;
|
|
namespace WIDESEAWCS_StockService
|
{
|
public class StockSerivce:IStockService
|
{
|
public IStockInfoDetailService StockInfoDetailService { get; }
|
|
public IStockInfoService StockInfoService { get; }
|
|
public StockSerivce(IStockInfoDetailService stockInfoDetailService, IStockInfoService stockInfoService)
|
{
|
StockInfoDetailService = stockInfoDetailService;
|
StockInfoService = stockInfoService;
|
}
|
}
|
}
|