using Aucma.Scada.Model.domain; using HighWayIot.Log4net; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.service.Impl { public class RecordOutStoreServiceImpl : IRecordOutStoreService { Repository _repository => new Repository("mes"); private LogHelper logHelper = LogHelper.Instance; public bool InsertReocrdOutStoreService(RecordOutstore recordOutstore) { bool result = false; try { result = _repository.Insert(recordOutstore); } catch (Exception ex) { logHelper.Error("出库记录添加异常", ex); } return result; } } }