public ActionResult Signup()
        {
            SignupModel       model             = new SignupModel();
            AccountConnection accountConnection = new AccountConnection();

            model.UserTypes = accountConnection.GetUserTypes();
            return(View(model));
        }