Пример #1
0
 public Users(TestntIdentityDbContext testntIdentityDbContext, UserManager <ApplicationUser> userManager, RoleManager <ApplicationRole> roleManager, ILogger <Users> logger)
 {
     this.testntIdentityDbContext = testntIdentityDbContext;
     this.userManager             = userManager;
     this.roleManager             = roleManager;
     this.logger = logger;
 }
Пример #2
0
 public GetAccountListQueryHandler(TestntIdentityDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }