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

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