mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 16:56:35 +08:00
17 lines
399 B
C#
17 lines
399 B
C#
using SqlSugar;
|
|
|
|
namespace Yi.Furion.Rbac.Application;
|
|
|
|
public class SystemService : ISystemService, ITransient
|
|
{
|
|
private readonly ISqlSugarClient _sqlSugarClient;
|
|
public SystemService(ISqlSugarClient sqlSugarClient)
|
|
{
|
|
_sqlSugarClient=sqlSugarClient;
|
|
}
|
|
public string GetDescription()
|
|
{
|
|
return "让 .NET 开发更简单,更通用,更流行。";
|
|
}
|
|
}
|