Inheritance: IMembershipService
 // This constructor is not used by the MVC framework but is instead provided for ease
 // of unit testing this type. See the comments at the end of this file for more
 // information.
 public AccountController(IFormsAuthentication formsAuth)
 {
     FormsAuth         = formsAuth ?? new FormsAuthenticationService();
     MembershipService = new AccountMembershipService();
 }
 // This constructor is not used by the MVC framework but is instead provided for ease
 // of unit testing this type. See the comments at the end of this file for more
 // information.
 public AccountController(IFormsAuthentication formsAuth)
 {
     FormsAuth = formsAuth ?? new FormsAuthenticationService();
     MembershipService = new AccountMembershipService();
 }