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