v3.0.1
v3.0.1
This commit is contained in:
@@ -2,11 +2,17 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Linq.Expressions;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CC.Yi.IDAL
|
||||
{
|
||||
public interface IBaseDal<T> where T : class, new()
|
||||
{
|
||||
#region
|
||||
//通过Id得到实体
|
||||
#endregion
|
||||
Task<T> GetEntityById(int id);
|
||||
|
||||
#region
|
||||
//得到全部实体
|
||||
#endregion
|
||||
|
||||
@@ -8,7 +8,4 @@ namespace CC.Yi.IDAL
|
||||
public partial interface IstudentDal:IBaseDal<student>
|
||||
{
|
||||
}
|
||||
public partial interface IpropDal:IBaseDal<prop>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user