using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Uow;
using Yi.Framework.SqlSugarCore.Abstractions;
namespace Yi.Framework.SqlSugarCore.Uow
{
///
/// SqlSugar数据库API实现
///
public class SqlSugarDatabaseApi : IDatabaseApi
{
///
/// 数据库上下文
///
public ISqlSugarDbContext DbContext { get; }
///
/// 初始化SqlSugar数据库API
///
/// 数据库上下文
public SqlSugarDatabaseApi(ISqlSugarDbContext dbContext)
{
DbContext = dbContext;
}
}
}