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