public InitialPeopleCreator(BlueHrmDbContext context)
 {
     _context = context;
 }
 public DefaultTenantRoleAndUserCreator(BlueHrmDbContext context)
 {
     _context = context;
 }
示例#3
0
 public DefaultLanguagesCreator(BlueHrmDbContext context)
 {
     _context = context;
 }
示例#4
0
 public DefaultEditionCreator(BlueHrmDbContext context)
 {
     _context = context;
 }
示例#5
0
 public HrmSeed(BlueHrmDbContext context)
 {
     _context = context;
 }
示例#6
0
 protected override void Seed(BlueHrmDbContext context)
 {
     new InitialDbBuilder(context).Create();
 }
 public DefaultSettingsCreator(BlueHrmDbContext context)
 {
     _context = context;
 }
示例#8
0
 public InitialDbBuilder(BlueHrmDbContext context)
 {
     _context = context;
 }