コード例 #1
0
ファイル: IsCorrectPin2Query.cs プロジェクト: xshaheen/egid
 public IsCorrectPin2QueryHandler(IEgidDbContext context,
                                  ICurrentUserService currentUser, ICardManagerService cardManager)
 {
     _context     = context;
     _currentUser = currentUser;
     _cardManager = cardManager;
 }
コード例 #2
0
ファイル: CreateCitizenCommand.cs プロジェクト: xshaheen/egid
 public CreateCitizenCommandHandler(IEgidDbContext context, IFilesDirectoryService directories,
                                    ISymmetricCryptographyService cryptographyService, IKeysGeneratorService keys)
 {
     _context             = context;
     _directories         = directories;
     _cryptographyService = cryptographyService;
     _keys = keys;
 }
コード例 #3
0
ファイル: SignHashCommand.cs プロジェクト: xshaheen/egid
 public SignHashCommandHandler(IDigitalSignatureService digitalSignatureService, IEgidDbContext context,
                               ICurrentUserService currentUser, ICardManagerService cardManager, ISymmetricCryptographyService cryptoService)
 {
     _digitalSignatureService = digitalSignatureService;
     _context       = context;
     _currentUser   = currentUser;
     _cardManager   = cardManager;
     _cryptoService = cryptoService;
 }
コード例 #4
0
ファイル: InitializeDbCommand.cs プロジェクト: xshaheen/egid
 public InitializeDbHandler(
     ICardManagerService cardManager,
     IKeysGeneratorService citizenKeys,
     IEgidDbContext context,
     ISymmetricCryptographyService cryptographyService,
     IConfiguration config)
 {
     _citizenKeys         = citizenKeys;
     _context             = context;
     _cryptographyService = cryptographyService;
     _config      = config;
     _cardManager = cardManager;
 }
コード例 #5
0
 public UpdateCitizenCommandHandler(IEgidDbContext context, IFilesDirectoryService directories)
 {
     _context     = context;
     _directories = directories;
 }
コード例 #6
0
ファイル: GetHealthInfoQuery.cs プロジェクト: xshaheen/egid
 public GetHealthInfoQueryHandler(IEgidDbContext context, IFilesDirectoryService directoryService)
 {
     _context          = context;
     _directoryService = directoryService;
 }
コード例 #7
0
 public UpdateHealthInfoHandler(IEgidDbContext context) => _context = context;
コード例 #8
0
 public GetEmergencyInfoQueryHandler(IEgidDbContext context) => _context = context;
コード例 #9
0
 public GetCitizenDetailsQueryHandler(IEgidDbContext context) => _context = context;
コード例 #10
0
 public AddHealthRecordCommandHandler(IEgidDbContext context, IFilesDirectoryService directoryService)
 {
     _context          = context;
     _directoryService = directoryService;
 }
コード例 #11
0
ファイル: DeleteCitizenCommand.cs プロジェクト: xshaheen/egid
 public DeleteCitizenCommandHandler(IEgidDbContext context, ICardManagerService cardManager)
 {
     _context     = context;
     _cardManager = cardManager;
 }