Files
Yi.Admin/CC.Yi/CC.Yi.BLL/T4BLL.cs

29 lines
728 B
C#
Raw Normal View History

2021-03-20 14:12:24 +08:00

using CC.Yi.IBLL;
using CC.Yi.IDAL;
using CC.Yi.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2021-05-13 01:39:34 +08:00
using Microsoft.EntityFrameworkCore;
2021-03-20 14:12:24 +08:00
namespace CC.Yi.BLL
{
public partial class studentBll : BaseBll<student>, IstudentBll
{
2021-05-13 01:39:34 +08:00
public studentBll(IBaseDal<student> cd,DataContext _Db):base(cd,_Db)
2021-03-20 14:12:24 +08:00
{
CurrentDal = cd;
2021-05-13 01:39:34 +08:00
DbSession = _Db;
2021-03-20 14:12:24 +08:00
}
}
2021-05-31 21:41:27 +08:00
public partial class propBll : BaseBll<prop>, IpropBll
{
public propBll(IBaseDal<prop> cd,DataContext _Db):base(cd,_Db)
{
CurrentDal = cd;
DbSession = _Db;
}
}
2021-03-20 14:12:24 +08:00
}