private static void DeletePun(int index) { Console.WriteLine("---------------"); Console.Write("Are you sure you want to delete this pun? (Y/N) "); var input = Console.ReadLine().ToUpper(); if (input == "Y") { _service.DeletePun(index); } }
public void DeletePun(int id) { _service.DeletePun(id); }
public void DeletePun(int punID) { _service.DeletePun(punID); }