Exemple #1
0
 public AccountRepository(XIVContext context, UserManager <AppUser> userManager, IJwtFactory factory,
                          IOptions <JwtIssuerOptions> options, IMapper mapper)
 {
     _context     = context;
     _userManager = userManager;
     _factory     = factory;
     _options     = options.Value;
     _mapper      = mapper;
 }
Exemple #2
0
 public CategoryRepository(XIVContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public SheetRepository(XIVContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public RetainerRepository(XIVContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }