public void Delete(int id)
        {
            var result = dao.Delete(id);

            if (result)
            {
                Console.WriteLine("Plano deletado com sucesso.");
            }
            else
            {
                throw new Exception("Plano não pode ser excluído");
            }
        }