CSharp-Single-EFCore/Bunny.Service/IService/Service/BaseService.cs

12 lines
258 B
C#
Raw Normal View History

2024-08-08 22:23:36 +08:00
using Bunny.Dao.Models.System;
namespace Bunny.Service.IService.Service;
public class BaseService : IBaseService
{
public string TestIndex()
2024-08-08 22:23:36 +08:00
{
const string result = "bunny-template 实现自动注入成功";
return result;
}
}