public VoteController(
     IContentManager contentManager, 
     IAuthenticationService authenticationService, 
     IInternalVotingService internalVotingService) {
     _contentManager = contentManager;
     _authenticationService = authenticationService;
     _internalVotingService = internalVotingService;
     T = NullLocalizer.Instance;
 }
 public VoteController(
     IContentManager contentManager,
     IAuthenticationService authenticationService,
     IInternalVotingService internalVotingService)
 {
     _contentManager        = contentManager;
     _authenticationService = authenticationService;
     _internalVotingService = internalVotingService;
     T = NullLocalizer.Instance;
 }
Beispiel #3
0
 public VoteUpDownPartDriver(IAuthenticationService authenticationService, IInternalVotingService internalVotingService)
 {
     _authenticationService = authenticationService;
     _internalVotingService = internalVotingService;
 }