using AutoMapper;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_IRecordService;
using WIDESEA_Model.Models;
namespace WIDESEA_RecordService
{
///
/// 库存数量变更记录服务实现类
///
public partial class StockQuantityChangeRecordService : ServiceBase>, IStockQuantityChangeRecordService
{
private readonly IMapper _mapper;
///
/// 构造函数
///
/// 基础数据访问对象
/// 对象映射器
public StockQuantityChangeRecordService(IRepository baseDal, IMapper mapper) : base(baseDal)
{
_mapper = mapper;
}
///
/// 获取库存数量变更记录仓储接口
///
public IRepository Repository => BaseDal;
}
}