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 class BaseService<T> : BaseRepository<T> where T : class, new()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|