using Volo.Abp.Domain.Entities; using Volo.Abp.Domain.Repositories.EntityFrameworkCore; using Volo.Abp.EntityFrameworkCore; namespace LifePayment.EntityFrameworkCore { public class LifePaymentServicesRepositoryBase : EfCoreRepository where TEntity : class, IEntity { public LifePaymentServicesRepositoryBase(IDbContextProvider dbContextProvider) : base(dbContextProvider) { } } public class LifePaymentServicesRepositoryBase : EfCoreRepository where TEntity : class, IEntity { public LifePaymentServicesRepositoryBase(IDbContextProvider dbContextProvider) : base(dbContextProvider) { } } }