示例#1
0
        public ActionResult Create(FormCollection form)
        {
            ApiCustomer customer = new ApiCustomer();

            customer.CustomerFirstName = form["CustomerFirstName"];
            customer.CustomerLastName  = form["CustomerLastName"];
            customer.CustomerPhoneId   = Int32.Parse(form["CustomerPhoneId"]);
            customer.CustomerAddress   = form["CustomerAddress"];
            customer.CustomerDOB       = DateTime.Parse(form["CustomerDOB"]);
            if (!client.CreateCustomer(customer))
            {
                return(View(customer));
            }
            else
            {
                return(RedirectToAction("Customers"));
            }
        }