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