Example #1
0
        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);
            }
        }
Example #2
0
 public void DeletePun(int id)
 {
     _service.DeletePun(id);
 }
 public void DeletePun(int punID)
 {
     _service.DeletePun(punID);
 }