public AccountController(IAccountPageService accountPageService)
 {
     this._accountPageService = accountPageService ?? throw new ArgumentNullException(nameof(accountPageService));
 }
 public SignUpUserModel(IAccountPageService accountPageService)
 {
     this._accountPageService = accountPageService ?? throw new ArgumentNullException(nameof(accountPageService));
 }