using WIDESEAWCS_Core.BaseRepository;
|
using WIDESEAWCS_Core.BaseServices;
|
using WIDESEAWCS_IWMSPart;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEAWCS_WMSPart
|
{
|
/// <summary>
|
/// 货位状态变动记录业务实现层
|
/// </summary>
|
public partial class LocationStatusChangeRecordService : ServiceBase<Dt_LocationStatusChangeRecord, IRepository<Dt_LocationStatusChangeRecord>>, ILocationStatusChangeRecordService
|
{
|
public LocationStatusChangeRecordService(IRepository<Dt_LocationStatusChangeRecord> BaseDal) : base(BaseDal)
|
{
|
}
|
|
public IRepository<Dt_LocationStatusChangeRecord> Repository => BaseDal;
|
}
|
}
|