schangxiang@126.com
2025-05-08 9cc9187d1d56332ab06620ae5bce8a9d0d2045bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using CMS.Plugin.WareCmsUtilityApi.Domain.Data;
using Volo.Abp.Domain.Repositories.Dapper;
using Volo.Abp.EntityFrameworkCore;
 
namespace CMS.Plugin.WareCmsUtilityApi.EntityFrameworkCore;
 
/// <inheritdoc />
public class CMSPluginDapperRepository : DapperRepository<ICMSPluginDbContext>, ICMSPluginDapperRepository
{
    /// <summary>
    /// Initializes a new instance of the <see cref="CMSPluginDapperRepository"/> class.
    /// </summary>
    /// <param name="dbContextProvider">The database context provider.</param>
    public CMSPluginDapperRepository(IDbContextProvider<ICMSPluginDbContext> dbContextProvider)
        : base(dbContextProvider)
    {
    }
}