using WIDESEAWCS_Core.BaseRepository;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_IWMSPart;
using WIDESEAWCS_Model.Models;
namespace WIDESEAWCS_WMSPart
{
///
/// 货位信息业务接口实现层
///
public partial class LocationInfoService : ServiceBase>, ILocationInfoService
{
private readonly IUnitOfWorkManage _unitOfWorkManage;
public IRepository Repository => BaseDal;
public LocationInfoService(IRepository BaseDal, IUnitOfWorkManage unitOfWorkManage) : base(BaseDal)
{
_unitOfWorkManage = unitOfWorkManage;
}
}
}