public ActionResult SignUp(UserModel model)
        {
            if (ModelState.IsValid)
            {
                UserProcessor.CreateCustomer(model);
                return(RedirectToAction("Index", "Home"));
            }

            return(View());
        }