コード例 #1
0
        public ActionResult AddCategory(string categoryName)
        {
            CakesPosRepository cpr = new CakesPosRepository(_connectionString);

            cpr.AddCategory(categoryName);
            return(RedirectToAction("Admin"));
        }