コード例 #1
0
        public ActionResult EditCustomer(int customerId, string firstName, string lastName, string address, string city, string state, string zip, string phone1, string phone2, string cell1, string cell2, bool caterer, string email)
        {
            CakesPosRepository cpr = new CakesPosRepository(_connectionString);

            cpr.EditCustomer(customerId, firstName, lastName, address, city, state, zip, phone1, phone2, cell1, cell2, caterer, email);
            return(null);
        }