public TenantRoleAndUserBuilder(AspNetDemoDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
Пример #2
0
 public DefaultEditionsCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
 public HostRoleAndUserCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
Пример #4
0
 public DefaultSettingsCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
 public DefaultLanguagesCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
Пример #6
0
 public DefaultTenantCreator(AspNetDemoDbContext context)
 {
     _context = context;
 }
Пример #7
0
 public InitialHostDbBuilder(AspNetDemoDbContext context)
 {
     _context = context;
 }