xcx_temp_api/ARW.Service/BaseService.cs
2023-06-02 21:15:33 +08:00

20 lines
485 B
C#

using ARW.Repository;
namespace ARW.Service
{
/// <summary>
/// 基础服务定义
/// </summary>
/// <typeparam name="T"></typeparam>
public class BaseService<T> : BaseRepository<T> where T : class, new()
{
//public IBaseRepository<T> baseRepository;
//public BaseService(IBaseRepository<T> repository)
//{
// this.baseRepository = repository ?? throw new ArgumentNullException(nameof(repository));
//}
}
}