public AccountProxyService(ISafeAccountService safeAccountService, ICache cache)
 {
     this.safeAccountService = safeAccountService;
     this.cache = cache;
 }
Ejemplo n.º 2
0
 public AuthenticationMddleware(RequestDelegate next, ISafeAccountService safeAccountService)
 {
     this.next = next;
     this.safeAccountService = safeAccountService;
 }
Ejemplo n.º 3
0
 public AccountController(ISafeAccountService safeAccountService, IUnsafeAccountService unsafeAccountService)
 {
     this.safeAccountService   = safeAccountService;
     this.unsafeAccountService = unsafeAccountService;
 }