Files

12 lines
255 B
C#
Raw Permalink Normal View History

2024-12-03 09:25:16 +08:00
using DOAN.Repository;
2024-11-28 13:36:05 +08:00
2024-12-03 09:25:16 +08:00
namespace DOAN.ServiceCore
2024-11-28 13:36:05 +08:00
{
/// <summary>
/// 基础服务定义
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IBaseService<T> : IBaseRepository<T> where T : class, new()
{
}
}