예제 #1
0
 public HostRoleAndUserCreator(BookLendingDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public DefaultSettingsCreator(BookLendingDbContext context)
 {
     _context = context;
 }
예제 #3
0
 public DefaultEditionsCreator(BookLendingDbContext context)
 {
     _context = context;
 }
 public TenantRoleAndUserBuilder(BookLendingDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
 public DefaultLanguagesCreator(BookLendingDbContext context)
 {
     _context = context;
 }
예제 #6
0
 public DefaultTenantCreator(BookLendingDbContext context)
 {
     _context = context;
 }
예제 #7
0
 public InitialHostDbBuilder(BookLendingDbContext context)
 {
     _context = context;
 }