ChildAction.Controllers.AccountController.AccountController C# (CSharp) Method

AccountController() public method

public AccountController ( IFormsAuthenticationService formsService, IMembershipService membershipService ) : System
formsService IFormsAuthenticationService
membershipService IMembershipService
return System
        public AccountController(IFormsAuthenticationService formsService, IMembershipService membershipService)
        {
            FormsService = formsService ?? new FormsAuthenticationService();
            MembershipService = membershipService ?? new AccountMembershipService();
        }

Same methods

AccountController::AccountController ( ) : System