zs
2025-05-08 93d77e4c9cbe4d5321891a69de577cdebc54213a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using CMS.Plugin.HIAWms.Domain.Data;
using Volo.Abp.Domain.Repositories.Dapper;
using Volo.Abp.EntityFrameworkCore;
 
namespace CMS.Plugin.HIAWms.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)
    {
    }
}