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<LifePaymentServicesDbContext>, ILifePaymentServicesDbContext
|
{
|
public LifePaymentServicesDbContext(DbContextOptions<LifePaymentServicesDbContext> options)
|
: base(options)
|
{
|
}
|
|
|
[UnitOfWork]
|
protected override void OnModelCreating(ModelBuilder builder)
|
{
|
base.OnModelCreating(builder);
|
|
}
|
}
|
}
|