Beispiel #1
0
 public UserStorage(ParrotWingsDbContext dbContext)
 {
     this._dbContext = dbContext;
 }
Beispiel #2
0
 public TemplateStorage(ParrotWingsDbContext dbContext, IUserStorage userStorage)
 {
     this._dbContext   = dbContext;
     this._userStorage = userStorage;
 }
 public InitialHostDbBuilder(ParrotWingsDbContext context)
 {
     _context = context;
 }
 public TransactionStorage(ParrotWingsDbContext dbContext, IUserStorage userStorage)
 {
     this._dbContext   = dbContext;
     this._userStorage = userStorage;
 }
Beispiel #5
0
 public DefaultLanguagesCreator(ParrotWingsDbContext context)
 {
     _context = context;
 }
 public DefaultSettingsCreator(ParrotWingsDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public TenantRoleAndUserBuilder(ParrotWingsDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
Beispiel #8
0
 public HostRoleAndUserCreator(ParrotWingsDbContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public DefaultTenantCreator(ParrotWingsDbContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public DefaultEditionsCreator(ParrotWingsDbContext context)
 {
     _context = context;
 }