Exemplo n.º 1
0
		public AccountController(AccountService accountService, 
			AuthenticationService authenticationService, 
			EncryptionService encryptionService)
		{
			_accountService = accountService;
			_authenticationService = authenticationService;
			_encryptionService = encryptionService;
		}
		public AuthenticationAttemptFilter(AccountService accountService, EncryptionService encryptionService) : base(accountService, encryptionService)
		{
		}
Exemplo n.º 3
0
		public MaintenanceController(AccountService accountService, BlogService blogService)
		{
			_accountService = accountService;
			_blogService = blogService;
		}
		public AuthenticationCheckFilter(AccountService accountService, 
			EncryptionService encryptionService)
		{
			_accountService = accountService;
			_encryptionService = encryptionService;
		}