Beispiel #1
0
 public CreateCitizenCommandHandler(IEgidDbContext context, IFilesDirectoryService directories,
                                    ISymmetricCryptographyService cryptographyService, IKeysGeneratorService keys)
 {
     _context             = context;
     _directories         = directories;
     _cryptographyService = cryptographyService;
     _keys = keys;
 }
Beispiel #2
0
 public CardManagerService(
     EgidDbContext context,
     UserManager <Card> userManager,
     RoleManager <IdentityRole> roleManager,
     SignInManager <Card> signInManager,
     IPasswordValidator <Card> passwordValidator,
     IDateTime dateTime,
     ICurrentUserService currentUser, IHashService hashService,
     IJwtTokenService jwtTokenService, IFilesDirectoryService directoryService)
 {
     _context           = context;
     _userManager       = userManager;
     _signInManager     = signInManager;
     _passwordValidator = passwordValidator;
     _dateTime          = dateTime;
     _currentUser       = currentUser;
     _hashService       = hashService;
     _jwtTokenService   = jwtTokenService;
     _directoryService  = directoryService;
     _roleManager       = roleManager;
 }
Beispiel #3
0
 public UpdateCitizenCommandHandler(IEgidDbContext context, IFilesDirectoryService directories)
 {
     _context     = context;
     _directories = directories;
 }
Beispiel #4
0
 public GetHealthInfoQueryHandler(IEgidDbContext context, IFilesDirectoryService directoryService)
 {
     _context          = context;
     _directoryService = directoryService;
 }
 public AddHealthRecordCommandHandler(IEgidDbContext context, IFilesDirectoryService directoryService)
 {
     _context          = context;
     _directoryService = directoryService;
 }