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();
|
|
}
|
|
|
|
|
|
|
|
}
|