merchant onboarding process completed
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Design;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Singer_Hexdive.Models;
|
||||
using System.IO;
|
||||
|
||||
namespace Singer_Hexdive
|
||||
@ -9,6 +10,12 @@ namespace Singer_Hexdive
|
||||
{
|
||||
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) { }
|
||||
|
||||
public DbSet<IdentificationType> IdentificationTypes { get; set; }
|
||||
public DbSet<MerchantBankDetails> MerchantBankDetails { get; set; }
|
||||
public DbSet<MerchantBusinessDetail> MerchantBusinessDetail { get; set; }
|
||||
public DbSet<MerchantPersonalDetail> MerchantPersonalDetail { get; set; }
|
||||
public DbSet<MerchantShareHolders> MerchantShareHolders { get; set; }
|
||||
public DbSet<MerchantDirectors> MerchantDirectors { get; set; }
|
||||
}
|
||||
|
||||
public class ApplicationDbContextFactory : IDesignTimeDbContextFactory<ApplicationDbContext>
|
||||
|
Reference in New Issue
Block a user