Files
Yi.Admin/CC.Yi.IDAL/T4IDbSession.cs

15 lines
271 B
C#
Raw Normal View History

2021-03-28 01:11:53 +08:00
using CC.Yi.Model;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace CC.Yi.IDAL
{
public partial interface IDbSession
{
IstudentDal studentDal{get;}
}
}