示例#1
0
 public HostRoleAndUserCreator(PostgreSqlDemoDbContext context)
 {
     _context = context;
 }
示例#2
0
 public DefaultTenantBuilder(PostgreSqlDemoDbContext context)
 {
     _context = context;
 }
 public DefaultEditionCreator(PostgreSqlDemoDbContext context)
 {
     _context = context;
 }
 public DefaultLanguagesCreator(PostgreSqlDemoDbContext context)
 {
     _context = context;
 }
 public InitialHostDbBuilder(PostgreSqlDemoDbContext context)
 {
     _context = context;
 }
示例#6
0
 public DefaultSettingsCreator(PostgreSqlDemoDbContext context)
 {
     _context = context;
 }
 public TenantRoleAndUserBuilder(PostgreSqlDemoDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }