public TenantRoleAndUserBuilder(AspNetDemoDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
Esempio n. 2
0
 public DefaultEditionsCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
 public HostRoleAndUserCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public DefaultSettingsCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
 public DefaultLanguagesCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
Esempio n. 6
0
 public DefaultTenantCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
 public InitialHostDbBuilder(AspNetDemoDbContext context)
 {
     _context = context;
 }