Files
Yi.Admin/Yi.Furion.Rbac/Yi.Furion.Rbac.Application/System/Services/SystemService.cs

17 lines
399 B
C#
Raw Normal View History

2023-04-12 22:52:09 +08:00
using SqlSugar;
namespace Yi.Furion.Rbac.Application;
2023-04-12 22:30:42 +08:00
public class SystemService : ISystemService, ITransient
{
2023-04-12 22:52:09 +08:00
private readonly ISqlSugarClient _sqlSugarClient;
public SystemService(ISqlSugarClient sqlSugarClient)
{
_sqlSugarClient=sqlSugarClient;
}
2023-04-12 22:30:42 +08:00
public string GetDescription()
{
return "让 .NET 开发更简单,更通用,更流行。";
}
}