2024-07-01 16:04:40 +08:00

12 lines
251 B
C#

using DOAN.Repository;
namespace DOAN.Service
{
/// <summary>
/// 基础服务定义
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IBaseService<T> : IBaseRepository<T> where T : class, new()
{
}
}