public FacebookAuthenticationServiceController(
     IResourceBuilder resourceBuilder,
     IFacebookAuthenticationServiceApplicationService facebookAuthenticationServiceApplicationService,
     IAuthenticationServiceApplicationService authenticationServiceApplicationService,
     IConcurrencyVersionProvider concurrencyVersionProvider,
     IMapper mapper)
 {
     _resourceBuilder = resourceBuilder;
     _facebookAuthenticationServiceApplicationService = facebookAuthenticationServiceApplicationService;
     _authenticationServiceApplicationService         = authenticationServiceApplicationService;
     _mapper = mapper;
     _concurrencyVersionProvider = concurrencyVersionProvider;
 }
Exemple #2
0
 public GoogleAuthenticationServiceController(
     IResourceBuilder resourceBuilder,
     IGoogleAuthenticationServiceApplicationService googleAuthenticationServiceApplicationService,
     IAuthenticationServiceApplicationService authenticationServiceApplicationService,
     IConcurrencyVersionProvider concurrencyVersionProvider,
     IMapper mapper)
 {
     _resourceBuilder = resourceBuilder;
     _googleAuthenticationServiceApplicationService = googleAuthenticationServiceApplicationService;
     _authenticationServiceApplicationService       = authenticationServiceApplicationService;
     _mapper = mapper;
     _concurrencyVersionProvider = concurrencyVersionProvider;
 }
 public ConcurrencyActionFilter(IConcurrencyVersionProvider concurrencyVersionProvider)
 {
     _concurrencyVersionProvider = concurrencyVersionProvider;
 }