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