You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using HybirdFrameworkCore.Autofac.Attribute;
|
|
|
|
|
using Entity.DbModel;
|
|
|
|
|
using Repository.System;
|
|
|
|
|
using Repository.UnitOfWork;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Service.System
|
|
|
|
|
{
|
|
|
|
|
[Scope("SingleInstance")]
|
|
|
|
|
public class SysBatteryReplaceLogServices : BaseServices<sysBatteryReplaceLog>
|
|
|
|
|
{
|
|
|
|
|
SysBatteryReplaceLogRepository _dal;
|
|
|
|
|
public SysBatteryReplaceLogServices(SysBatteryReplaceLogRepository dal)
|
|
|
|
|
{
|
|
|
|
|
this._dal = dal;
|
|
|
|
|
base.BaseDal = dal;
|
|
|
|
|
}
|
|
|
|
|
public bool AddReplaceOrser(sysBatteryReplaceLog _sysBatteryReplaceLog)
|
|
|
|
|
{
|
|
|
|
|
bool result = false;
|
|
|
|
|
if (_sysBatteryReplaceLog != null)
|
|
|
|
|
{
|
|
|
|
|
int resuklt = _dal.Insert(_sysBatteryReplaceLog);
|
|
|
|
|
if (resuklt > 0)
|
|
|
|
|
{
|
|
|
|
|
result = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|