liulb@mesnac.com 11 months ago
parent 7f1773bc54
commit 7464fa4e52

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

Loading…
Cancel
Save