using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using Volo.Abp.DependencyInjection;
namespace Yi.Framework.SqlSugarCore.Abstractions
{
///
/// SqlSugar数据库上下文接口
///
public interface ISqlSugarDbContext
{
///
/// 获取SqlSugar客户端实例
///
ISqlSugarClient SqlSugarClient { get; }
///
/// 执行数据库备份
///
void BackupDataBase();
}
}