public AccountProxyService(ISafeAccountService safeAccountService, ICache cache) { this.safeAccountService = safeAccountService; this.cache = cache; }
public AuthenticationMddleware(RequestDelegate next, ISafeAccountService safeAccountService) { this.next = next; this.safeAccountService = safeAccountService; }
public AccountController(ISafeAccountService safeAccountService, IUnsafeAccountService unsafeAccountService) { this.safeAccountService = safeAccountService; this.unsafeAccountService = unsafeAccountService; }