You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Aucma.Scada/HighWayIot.Repository/service/Impl/RecordOutStoreServiceImpl.cs

33 lines
847 B
C#

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<RecordOutstore> _repository => new Repository<RecordOutstore>("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;
}
}
}