|
using JiepeiWMS.IServices;
|
using JiepeiWMS.Model.Models;
|
using JiepeiWMS.Services.BASE;
|
using JiepeiWMS.IRepository.Base;
|
|
namespace JiepeiWMS.Services
|
{
|
public class WMProductSpecServices : BaseServices<WMProductSpec>, IWMProductSpecServices
|
{
|
private readonly IBaseRepository<WMProductSpec> _dal;
|
public WMProductSpecServices(IBaseRepository<WMProductSpec> dal)
|
{
|
this._dal = dal;
|
base.BaseDal = dal;
|
}
|
}
|
}
|