public AccountController(IUserProfileDbWrapper userProfileDbWrapper, IAuthenticationHelper authenticationHelper)
 {
     _userProfileDbWrapper = userProfileDbWrapper;
     _authenticationHelper = authenticationHelper;
 }
 public AccountController()
 {
     _userProfileDbWrapper = new UserProfileDbWrapper();
     _authenticationHelper = new AuthenticationHelper();
 }