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