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