public TeeyootSocialLogOnService( IAuthenticationService authenticationService, IOrchardServices orchardServices, ITeeyootMembershipService teeyootMembershipService, ITeeyootUserService teeyootUserService) { _authenticationService = authenticationService; _orchardServices = orchardServices; _teeyootMembershipService = teeyootMembershipService; _teeyootUserService = teeyootUserService; Logger = NullLogger.Instance; T = NullLocalizer.Instance; }
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; }