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