Exemplo n.º 1
0
 public AccountController(
     UsersViewService usersService,
     CryptographicHelper cryptoHelper,
     IdGenerator idGenerator,
     AuthenticationService authenticationService,
     FacebookClientFactory fbFactory,
     SiteSettings settings)
 {
     _usersService          = usersService;
     _cryptoHelper          = cryptoHelper;
     _idGenerator           = idGenerator;
     _authenticationService = authenticationService;
     _fb       = fbFactory.GetClient();
     _settings = settings;
 }
Exemplo n.º 2
0
 public ProfileController(AvatarsService avatars, UsersViewService users)
 {
     _avatars = avatars;
     _users   = users;
 }
 public AuthenticationService(UsersViewService users, CryptographicHelper crypto)
 {
     _users  = users;
     _crypto = crypto;
     _crypto = crypto;
 }
Exemplo n.º 4
0
 public AuthenticationService(UsersViewService users, CryptographicHelper crypto, ICommandBus bus)
 {
     _users  = users;
     _crypto = crypto;
     _bus    = bus;
 }