15 lines
271 B
C#
15 lines
271 B
C#
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;}
|
|
|
|
}
|
|
} |