using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_IOutboundService;
using WIDESEA_Model.Models;
namespace WIDESEA_OutboundService
{
///
/// 出库单明细服务实现类
///
public partial class OutboundOrderDetailService : ServiceBase>, IOutboundOrderDetailService
{
private readonly IUnitOfWorkManage _unitOfWorkManage;
///
/// 获取出库单明细仓储接口
///
public IRepository Repository => BaseDal;
///
/// 构造函数
///
/// 基础数据访问对象
/// 工作单元管理器
public OutboundOrderDetailService(
IRepository baseDal,
IUnitOfWorkManage unitOfWorkManage) : base(baseDal)
{
_unitOfWorkManage = unitOfWorkManage;
}
}
}