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; }
public IdentityController(IDomainUserService domainUserService) { _domainUserService = domainUserService; }