using JiepeiWMS.IRepository; using JiepeiWMS.IRepository.UnitOfWork; using JiepeiWMS.Model.Models; using JiepeiWMS.Repository.Base; namespace JiepeiWMS.Repository { /// /// WMProductLocationInfoRepository /// public class WMProductLocationInfoRepository : BaseRepository, IWMProductLocationInfoRepository { public WMProductLocationInfoRepository(IUnitOfWork unitOfWork) : base(unitOfWork) { } } }