public DefaultTenantCreator(AppointmentAppDbContext context)
 {
     _context = context;
 }
示例#2
0
 public HostRoleAndUserCreator(AppointmentAppDbContext context)
 {
     _context = context;
 }
 public DefaultEditionsCreator(AppointmentAppDbContext context)
 {
     _context = context;
 }
 public DefaultSettingsCreator(AppointmentAppDbContext context)
 {
     _context = context;
 }
 public TenantRoleAndUserBuilder(AppointmentAppDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
示例#6
0
 public InitialHostDbBuilder(AppointmentAppDbContext context)
 {
     _context = context;
 }
 public DefaultLanguagesCreator(AppointmentAppDbContext context)
 {
     _context = context;
 }