using LifePayment.Domain; using Microsoft.EntityFrameworkCore; using Volo.Abp.Data; using Volo.Abp.EntityFrameworkCore; using Volo.Abp.Uow; namespace LifePayment.EntityFrameworkCore { [ConnectionStringName(LifePaymentServicesDbProperties.ConnectionStringName)] public class LifePaymentServicesDbContext : AbpDbContext, ILifePaymentServicesDbContext { public LifePaymentServicesDbContext(DbContextOptions options) : base(options) { } [UnitOfWork] protected override void OnModelCreating(ModelBuilder builder) { base.OnModelCreating(builder); } } }