first commit
This commit is contained in:
12
DOAN.ServiceCore/IBaseService.cs
Normal file
12
DOAN.ServiceCore/IBaseService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using DOAN.Repository;
|
||||
|
||||
namespace DOAN.ServiceCore
|
||||
{
|
||||
/// <summary>
|
||||
/// 基础服务定义
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
public interface IBaseService<T> : IBaseRepository<T> where T : class, new()
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user