public PerformanceBehaviour(
            ILogger <TRequest> logger,
            ICurrentUserService currentUserService,
            IDomainUserService domainUserService)
        {
            _timer = new Stopwatch();

            _logger             = logger;
            _currentUserService = currentUserService;
            _domainUserService  = domainUserService;
        }
 public LoggingBehaviour(ILogger <TRequest> logger, ICurrentUserService currentUserService, IDomainUserService domainUserService)
 {
     _logger             = logger;
     _currentUserService = currentUserService;
     _domainUserService  = domainUserService;
 }
Exemple #3
0
 public IdentityController(IDomainUserService domainUserService)
 {
     _domainUserService = domainUserService;
 }