public static void DeletarCelular()
        {
            Console.WriteLine(" DELETAR CELULAR ");
            Console.Write("Informe o ID do celular: ");
            var id = int.Parse(Console.ReadLine());

            celulares.DeletarCelular(id);
        }