Пример #1
0
        public static void SeedHostDb(SimpleTaskAppDbContext context)
        {
            context.SuppressAutoSetTenantId = true;

            // Host seed
            new InitialHostDbBuilder(context).Create();

            // Default tenant seed (in host database).
            new DefaultTenantBuilder(context).Create();
            new TenantRoleAndUserBuilder(context, 1).Create();
        }
 public TestDataBuilder(SimpleTaskAppDbContext context)
 {
     _context = context;
 }
 public DefaultEditionCreator(SimpleTaskAppDbContext context)
 {
     _context = context;
 }
 public DefaultLanguagesCreator(SimpleTaskAppDbContext context)
 {
     _context = context;
 }
Пример #5
0
 public DefaultTenantBuilder(SimpleTaskAppDbContext context)
 {
     _context = context;
 }
Пример #6
0
 public DefaultSettingsCreator(SimpleTaskAppDbContext context)
 {
     _context = context;
 }
Пример #7
0
 public TenantRoleAndUserBuilder(SimpleTaskAppDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
Пример #8
0
 public HostRoleAndUserCreator(SimpleTaskAppDbContext context)
 {
     _context = context;
 }
Пример #9
0
 public InitialHostDbBuilder(SimpleTaskAppDbContext context)
 {
     _context = context;
 }