Exemplo n.º 1
0
        public PerformanceBehaviour(
            ILogger <TRequest> logger,
            ICurrentUserService currentUserService,
            IDomainUserService domainUserService)
        {
            _timer = new Stopwatch();

            _logger             = logger;
            _currentUserService = currentUserService;
            _domainUserService  = domainUserService;
        }
Exemplo n.º 2
0
 public LoggingBehaviour(ILogger <TRequest> logger, ICurrentUserService currentUserService, IDomainUserService domainUserService)
 {
     _logger             = logger;
     _currentUserService = currentUserService;
     _domainUserService  = domainUserService;
 }
Exemplo n.º 3
0
 public IdentityController(IDomainUserService domainUserService)
 {
     _domainUserService = domainUserService;
 }