|
|
|
@ -20,7 +20,6 @@ namespace Admin.Core.Service
|
|
|
|
|
private static readonly log4net.ILog log = LogManager.GetLogger(typeof(xl_materialServices));
|
|
|
|
|
private readonly IBaseRepository<xl_material> _dal;
|
|
|
|
|
private readonly Ixl_materialRepository _xl_materialRepository;
|
|
|
|
|
private readonly IHw_BinTypeErrorPreventionReportRepository _binType;
|
|
|
|
|
private readonly IPmt_BinRepository _pmt_BinRepository;
|
|
|
|
|
private readonly Ixl_planRepository _planRepository;//小料计划
|
|
|
|
|
private readonly IHw_BarrelRepository _hw_BarrelRepository;
|
|
|
|
@ -30,14 +29,13 @@ namespace Admin.Core.Service
|
|
|
|
|
|
|
|
|
|
#region 构造函数
|
|
|
|
|
public xl_materialServices(IBaseRepository<xl_material> dal, Ixl_materialRepository xl_materialRepository,
|
|
|
|
|
IPmt_BinRepository pmt_BinRepository, IHw_BinTypeErrorPreventionReportRepository binType,
|
|
|
|
|
Ixl_planRepository planRepository, IHw_BarrelRepository hw_BarrelRepository, ILR_planRepository lrPlanRepository)
|
|
|
|
|
IPmt_BinRepository pmt_BinRepository,Ixl_planRepository planRepository,
|
|
|
|
|
IHw_BarrelRepository hw_BarrelRepository, ILR_planRepository lrPlanRepository)
|
|
|
|
|
{
|
|
|
|
|
this._dal = dal;
|
|
|
|
|
base.BaseDal = dal;
|
|
|
|
|
_xl_materialRepository = xl_materialRepository;
|
|
|
|
|
_pmt_BinRepository = pmt_BinRepository;
|
|
|
|
|
_binType = binType;
|
|
|
|
|
_planRepository = planRepository;
|
|
|
|
|
_hw_BarrelRepository = hw_BarrelRepository;
|
|
|
|
|
_lrPlanRepository = lrPlanRepository;
|
|
|
|
|