mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
19 lines
300 B
C#
19 lines
300 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
|
|
{
|
|
DataContext GetDbContent();
|
|
int SaveChanges();
|
|
}
|
|
|
|
|
|
|
|
}
|