Esempio n. 1
0
 public IdentityController(IIdentityAppService identityAppService, ICoreInjector coreInjector) : base(coreInjector)
 {
     _identityAppService = identityAppService;
 }
 public IdentityController(IIdentityAppService identityAppService, IFacebookAuthService facebookAuthService, IAccountAppService accountAppService)
 {
     this.identityAppService  = identityAppService;
     this.facebookAuthService = facebookAuthService;
     this.accountAppService   = accountAppService;
 }
Esempio n. 3
0
 public CosmosIntegrationTestController(ILogger <CosmosIntegrationTestController> logger, IIdentityAppService identityAppService)
 {
     _logger             = logger;
     _identityAppService = identityAppService;
 }