Example #1
0
        public UsersService(GuildCommDbContext context, IHttpContextAccessor httpContextAccessor, IMapper mapper)
        {
            this.context             = context;
            this.httpContextAccessor = httpContextAccessor;

            this.mapper = mapper;
        }
Example #2
0
 public GuildCommUserRoleSeeder(GuildCommDbContext context)
 {
     this.context = context;
 }
Example #3
0
 public GuildCommUserSeeder(GuildCommDbContext context, UserManager <GuildCommUser> userManager)
 {
     this.context = context;
     _userManager = userManager;
 }
Example #4
0
 public TokenRepository(GuildCommDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
Example #5
0
 public UsersService(GuildCommDbContext context)
 {
     this.context = context;
 }
Example #6
0
 public RealmRepository(GuildCommDbContext context)
 {
     _context = context;
 }