Ejemplo n.º 1
0
        public void DeleteContacts()
        {
            Console.WriteLine();
            Console.WriteLine("Delete Contact Details");
            ContactInfo obj = new ContactInfo();

            Console.WriteLine("Enter the ContactId that you want to Remove");
            int id = Convert.ToInt32(Console.ReadLine());

            c1.DeleteContact(id);
        }