feat:全基础流程跑通
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using Yi.Framework.Infrastructure.Ddd.Services;
|
||||
|
||||
namespace Yi.Furion.Application.Bbs.Services.Impl
|
||||
{
|
||||
/// <summary>
|
||||
/// Setting服务实现
|
||||
/// </summary>
|
||||
public class SettingService : ApplicationService,
|
||||
ISettingService,IDynamicApiController,ITransient
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取配置标题
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
/// <exception cref="NotImplementedException"></exception>
|
||||
public Task<string> GetTitleAsync()
|
||||
{
|
||||
return Task.FromResult("你好世界");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user