コード例 #1
0
ファイル: UserStorage.cs プロジェクト: mneofit/parrot-wings
 public UserStorage(ParrotWingsDbContext dbContext)
 {
     this._dbContext = dbContext;
 }
コード例 #2
0
 public TemplateStorage(ParrotWingsDbContext dbContext, IUserStorage userStorage)
 {
     this._dbContext   = dbContext;
     this._userStorage = userStorage;
 }
コード例 #3
0
 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;
 }
コード例 #6
0
 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;
 }