public ActionResult Delete()

in appx/Power BI Embedded/powerbi-sample-app/powerbi-sample-app/Controllers/AircraftController.cs [75:87]


        public ActionResult Delete(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add delete logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }