public TeeyootSocialLogOnService(
            IAuthenticationService authenticationService,
            IOrchardServices orchardServices,
            ITeeyootMembershipService teeyootMembershipService,
            ITeeyootUserService teeyootUserService)
        {
            _authenticationService = authenticationService;
            _orchardServices = orchardServices;
            _teeyootMembershipService = teeyootMembershipService;
            _teeyootUserService = teeyootUserService;

            Logger = NullLogger.Instance;
            T = NullLocalizer.Instance;
        }
Exemple #2
0
        public TeeyootSocialLogOnService(
            IAuthenticationService authenticationService,
            IOrchardServices orchardServices,
            ITeeyootMembershipService teeyootMembershipService,
            ITeeyootUserService teeyootUserService)
        {
            _authenticationService    = authenticationService;
            _orchardServices          = orchardServices;
            _teeyootMembershipService = teeyootMembershipService;
            _teeyootUserService       = teeyootUserService;

            Logger = NullLogger.Instance;
            T      = NullLocalizer.Instance;
        }
Exemple #3
0
        public AccountController(
            ITeeyootMembershipService teeyootMembershipService,
            IAuthenticationService authenticationService,
            IMembershipService membershipService,
            IUserService userService,
            ITeeyootFacebookOAuthService teeyootFacebookOAuthService,
            ITeeyootGoogleOAuthService teeyootGoogleOAuthService,
            IWorkContextAccessor workContextAccessor,
            ITeeyootUserService teeyootUserService)
        {
            _teeyootMembershipService = teeyootMembershipService;
            _authenticationService    = authenticationService;
            _membershipService        = membershipService;
            _userService = userService;
            _teeyootFacebookOAuthService = teeyootFacebookOAuthService;
            _teeyootGoogleOAuthService   = teeyootGoogleOAuthService;
            _workContextAccessor         = workContextAccessor;
            _teeyootUserService          = teeyootUserService;

            Logger = NullLogger.Instance;
            T      = NullLocalizer.Instance;
        }
Exemple #4
0
        public AccountController(
            ITeeyootMembershipService teeyootMembershipService,
            IAuthenticationService authenticationService,
            IMembershipService membershipService,
            IUserService userService,
            ITeeyootFacebookOAuthService teeyootFacebookOAuthService,
            ITeeyootGoogleOAuthService teeyootGoogleOAuthService,
            IWorkContextAccessor workContextAccessor,
            ITeeyootUserService teeyootUserService)
        {
            _teeyootMembershipService = teeyootMembershipService;
            _authenticationService = authenticationService;
            _membershipService = membershipService;
            _userService = userService;
            _teeyootFacebookOAuthService = teeyootFacebookOAuthService;
            _teeyootGoogleOAuthService = teeyootGoogleOAuthService;
            _workContextAccessor = workContextAccessor;
            _teeyootUserService = teeyootUserService;

            Logger = NullLogger.Instance;
            T = NullLocalizer.Instance;
        }