using WIDESEAWCS_Core.BaseRepository;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_IWMSPart;
using WIDESEAWCS_Model.Models;
namespace WIDESEAWCS_WMSPart
{
    /// 
    /// 库存明细业务实现层
    /// 
    public partial class StockInfoDetailService : ServiceBase>, IStockInfoDetailService
    {
        public StockInfoDetailService(IRepository BaseDal) : base(BaseDal)
        {
        }
        public IRepository Repository => BaseDal;
    }
}