Exemplo n.º 1
0
 public TrustAnchorApplicationService(ITrustAnchorRepository repository, IUnitOfWork unitOfWork, IssuerSetupHandler issuerSetupHandler, Context context)
 {
     _repository         = repository;
     _unitOfWork         = unitOfWork;
     _issuerSetupHandler = issuerSetupHandler;
     _context            = context;
 }
Exemplo n.º 2
0
 public IssuerSetupHandler(ITrustAnchorRepository repository, IUnitOfWork unitOfWork)
 {
     _repository = repository;
     _unitOfWork = unitOfWork;
 }