AutoMapperIntro.Controllers.ManufacturersController.Delete C# (CSharp) Method

Delete() public method

public Delete ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult
        public ActionResult Delete(int? id)
        {
            // The type of the parameter above was changed to int?, a nullable int
            // This will suppress an error message

            return View();
        }