mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
19 lines
441 B
C#
19 lines
441 B
C#
using Volo.Abp.Application.Services;
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
namespace Acme.BookStore.Application.Services
|
|
{
|
|
public class TestService : ApplicationService
|
|
{
|
|
/// <summary>
|
|
/// 你好世界
|
|
/// </summary>
|
|
/// <param name="name"></param>
|
|
/// <returns></returns>
|
|
public string GetHelloWorld(string? name)
|
|
{
|
|
return name ?? "HelloWord";
|
|
}
|
|
}
|
|
}
|