コード例 #1
0
        public async Task <IActionResult> DeleteConfirmed(string id)
        {
            var c = await paymentMethods.GetObject(id);

            await paymentMethods.DeleteObject(c);

            return(RedirectToAction("Index"));
        }