public UserStore(TableStore tableStore) { this.tableStore = tableStore; }
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; }
public RoleStore(TableStore tableStore) { this.tableStore = tableStore; }