2024-07-01 16:04:10 +08:00
|
|
|
|
using DOAN.Repository;
|
2024-05-16 13:30:30 +08:00
|
|
|
|
|
2024-07-01 16:04:10 +08:00
|
|
|
|
namespace DOAN.Service
|
2024-05-16 13:30:30 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 基础服务定义
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
|
|
public class BaseService<T> : BaseRepository<T> where T : class, new()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|