13 lines
250 B
C#
13 lines
250 B
C#
using DOAN.Repository;
|
|
|
|
namespace DOAN.ServiceCore
|
|
{
|
|
/// <summary>
|
|
/// 基础服务定义
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public class BaseService<T> : BaseRepository<T> where T : class, new()
|
|
{
|
|
}
|
|
}
|