ZrAdminNetCore/ZR.Service/System/SysConfigService.cs
2021-11-27 09:43:04 +08:00

23 lines
647 B
C#

using Infrastructure.Attribute;
using ZR.Model.System;
using ZR.Repository;
namespace ZR.Service.System
{
/// <summary>
/// 参数配置Service业务层处理
/// </summary>
[AppService(ServiceType = typeof(ISysConfigService), ServiceLifetime = LifeTime.Transient)]
public class SysConfigService : BaseService<SysConfig>, ISysConfigService
{
private readonly SysConfigRepository _SysConfigrepository;
public SysConfigService(SysConfigRepository repository) : base(repository)
{
_SysConfigrepository = repository;
}
#region
#endregion
}
}