lingling
2025-03-07 1b33c9c58b57bde6b60de30dfc8727132b92829d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using Volo.Abp.Domain.Entities;
using Volo.Abp.Domain.Repositories.EntityFrameworkCore;
using Volo.Abp.EntityFrameworkCore;
 
namespace LifePayment.EntityFrameworkCore
{
    public class LifePaymentServicesRepositoryBase<TEntity>
      : EfCoreRepository<LifePaymentServicesDbContext, TEntity>
        where TEntity : class, IEntity
    {
        public LifePaymentServicesRepositoryBase(IDbContextProvider<LifePaymentServicesDbContext> dbContextProvider)
            : base(dbContextProvider)
        {
        }
    }
 
    public class LifePaymentServicesRepositoryBase<TEntity, TKey>
        : EfCoreRepository<LifePaymentServicesDbContext, TEntity, TKey>
          where TEntity : class, IEntity<TKey>
    {
        public LifePaymentServicesRepositoryBase(IDbContextProvider<LifePaymentServicesDbContext> dbContextProvider)
            : base(dbContextProvider)
        {
        }
    }
}