using System.Data;
using Volo.Abp.DependencyInjection;
namespace CMS.Plugin.PipeLineLems.Domain.Data;
///
/// Dapper仓储
///
public interface ICMSPluginDapperRepository : ITransientDependency
{
///
/// Gets the database connection asynchronous.
///
///
Task GetDbConnectionAsync();
///
/// Gets the database transaction asynchronous.
///
///
Task GetDbTransactionAsync();
}