コード例 #1
0
        public ActionResult DeleteConfirmed(int id)
        {
            F_Car f_cars = new F_Car();

            f_cars.Delete(id);
            return(RedirectToAction("Index"));
        }
コード例 #2
0
        public void Delete(int id)
        {
            F_Car f_cars = new F_Car();

            f_cars.Delete(id);
        }