public DefaultLanguagesCreator(SimpleTaskDbContext context)
 {
     _context = context;
 }
 public DefaultTenantRoleAndUserBuilder(SimpleTaskDbContext context)
 {
     _context = context;
 }
 public DefaultLanguagesBuilder(SimpleTaskDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public HostRoleAndUserCreator(SimpleTaskDbContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public DefaultTenantCreator(SimpleTaskDbContext context)
 {
     _context = context;
 }
 public DefaultSettingsCreator(SimpleTaskDbContext context)
 {
     _context = context;
 }
 public InitialDataBuilder(SimpleTaskDbContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public DefaultEditionsCreator(SimpleTaskDbContext context)
 {
     _context = context;
 }
 public InitialHostDbBuilder(SimpleTaskDbContext context)
 {
     _context = context;
 }
 public DefaultEditionsBuilder(SimpleTaskDbContext context)
 {
     _context = context;
 }
 public TenantRoleAndUserBuilder(SimpleTaskDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }