using JiepeiWMS.IRepository;
|
using JiepeiWMS.IRepository.UnitOfWork;
|
using JiepeiWMS.Model.Models;
|
using JiepeiWMS.Repository.Base;
|
|
namespace JiepeiWMS.Repository
|
{
|
/// <summary>
|
/// WMProductSpecRepository
|
/// </summary>
|
public class WMProductSpecRepository : BaseRepository<WMProductSpec>, IWMProductSpecRepository
|
{
|
public WMProductSpecRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
{
|
}
|
}
|
}
|