v3.0.0
v3.0.0
This commit is contained in:
24
CC.Yi/CC.Yi.DAL/T4DAL.cs
Normal file
24
CC.Yi/CC.Yi.DAL/T4DAL.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using CC.Yi.IDAL;
|
||||
using CC.Yi.Model;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace CC.Yi.DAL
|
||||
{
|
||||
public partial class studentDal : BaseDal<student>, IstudentDal
|
||||
{
|
||||
public studentDal(DataContext _Db):base(_Db)
|
||||
{
|
||||
Db = _Db;
|
||||
}
|
||||
}
|
||||
public partial class propDal : BaseDal<prop>, IpropDal
|
||||
{
|
||||
public propDal(DataContext _Db):base(_Db)
|
||||
{
|
||||
Db = _Db;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user