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