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.

29 lines
731 B

8 months ago
using Entity.DbModel;
using HybirdFrameworkCore.Autofac.Attribute;
using Repository.System;
10 months ago
8 months ago
namespace Service.System;
9 months ago
8 months ago
[Scope("SingleInstance")]
public class SysBatteryReplaceLogServices : BaseServices<sysBatteryReplaceLog>
10 months ago
{
8 months ago
private readonly SysBatteryReplaceLogRepository _dal;
public SysBatteryReplaceLogServices(SysBatteryReplaceLogRepository dal)
10 months ago
{
8 months ago
_dal = dal;
BaseDal = dal;
}
public bool AddReplaceOrser(sysBatteryReplaceLog _sysBatteryReplaceLog)
{
var result = false;
if (_sysBatteryReplaceLog != null)
10 months ago
{
8 months ago
var resuklt = _dal.Insert(_sysBatteryReplaceLog);
if (resuklt > 0) result = true;
10 months ago
}
8 months ago
return result;
10 months ago
}
8 months ago
}