public HostRoleAndUserCreator(TaskSystemDbContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public PersonController(TaskSystemDbContext taskContext)
 {
     _taskContext = taskContext;
 }
 public DefaultLanguagesCreator(TaskSystemDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public DefaultTenantCreator(TaskSystemDbContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public DefaultSettingsCreator(TaskSystemDbContext context)
 {
     _context = context;
 }
 public InitialHostDbBuilder(TaskSystemDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public TenantRoleAndUserBuilder(TaskSystemDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
Beispiel #8
0
 public DefaultEditionsCreator(TaskSystemDbContext context)
 {
     _context = context;
 }