예제 #1
0
 public IdentityController(
     IIdentityApplicationService identityApplicationService,
     IDomainNotificationHandle <DomainNotification> iDomainNotificationHandle)
 {
     service      = identityApplicationService;
     notification = iDomainNotificationHandle;
 }
 public IdentityApplicationServiceSecurityDecorator(
     ISecurityApplicationService securityApplicationService,
     IIdentityApplicationService identityApplicationService)
 {
     _securityApplicationService = securityApplicationService;
     _identityApplicationService = identityApplicationService;
 }
예제 #3
0
 public IdentityController(
     IIdentityApplicationService identityApplicationService,
     IDomainNotificationHandle<DomainNotification> iDomainNotificationHandle)
 {
     service = identityApplicationService;
     notification = iDomainNotificationHandle;
 }
 public IdentityController(
     IResourceBuilder resourceBuilder,
     IIdentityApplicationService identityApplicationService,
     ICurrentIdentityProvider currentIdentityProvider)
 {
     _resourceBuilder            = resourceBuilder;
     _identityApplicationService = identityApplicationService;
     _currentIdentityProvider    = currentIdentityProvider;
 }