public ActionResult AddNewCustomer(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);

            return(Json(cpr.AddCustomer(firstName, lastName, address, city, state, zip, phone1, phone2, cell1, cell2, caterer, email), JsonRequestBehavior.AllowGet));
        }