コード例 #1
0
ファイル: RoleStore.cs プロジェクト: hempe/budget-planner
 public RoleStore(TableStore tableStore) => this.tableStore = tableStore;
コード例 #2
0
 public WarmUp(UserManager <User> userManager, RoleManager <IdentityRole> roleManager, IOptions <WarmUpOptions> options, TableStore tableStore)
 {
     this.userManager = userManager;
     this.options     = options.Value;
     this.tableStore  = tableStore;
     this.roleManager = roleManager;
 }
コード例 #3
0
ファイル: UserStore.cs プロジェクト: hempe/budget-planner
 public UserStore(TableStore tableStore)
 {
     this.tableStore = tableStore;
 }