예제 #1
0
        public ActionResult AddCust_Post(Customerinfo NewCust)
        {
            CustomerService New = new CustomerService();

            New.AddCust(NewCust);
            return(RedirectToAction("Index"));
        }