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

21 lines
480 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
}
}
}