From f5103b0be018c502f7ec4a8e58c5eccd45decb10 Mon Sep 17 00:00:00 2001 From: Jean-Francois Collin Date: Tue, 2 Oct 2012 08:38:49 -0400 Subject: [PATCH] Changement nom classes carte --- contenu/HobbyCartes/HobbyCartes/Collection.vb | 2 +- contenu/HobbyCartes/HobbyCartes/Fiche.aspx | 17 ++--------------- .../HobbyCartes/{Carte.vb => Fiche.vb} | 12 ++++++------ .../HobbyCartes/HobbyCartes/HobbyCartes.vbproj | 2 +- .../HobbyCartes/HobbyCartes/Inscription.aspx.vb | 2 +- 5 files changed, 11 insertions(+), 24 deletions(-) rename contenu/HobbyCartes/HobbyCartes/{Carte.vb => Fiche.vb} (78%) diff --git a/contenu/HobbyCartes/HobbyCartes/Collection.vb b/contenu/HobbyCartes/HobbyCartes/Collection.vb index 5f356ee..090e5b1 100644 --- a/contenu/HobbyCartes/HobbyCartes/Collection.vb +++ b/contenu/HobbyCartes/HobbyCartes/Collection.vb @@ -11,7 +11,7 @@ Private myType As Type - Private cartes As List(Of Carte) + Private cartes As List(Of Fiche) End Class diff --git a/contenu/HobbyCartes/HobbyCartes/Fiche.aspx b/contenu/HobbyCartes/HobbyCartes/Fiche.aspx index 1b56716..ec6dfc3 100644 --- a/contenu/HobbyCartes/HobbyCartes/Fiche.aspx +++ b/contenu/HobbyCartes/HobbyCartes/Fiche.aspx @@ -37,24 +37,11 @@
+ Ici ce trouveras un commentaires - -
-
- Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire - Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire - Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire - Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire - Commentaire commentaire -
-
- Commentaire commentaire - Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire - Commentaire commentaire - Commentaire commentaire - Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire Commentaire commentaire
+
diff --git a/contenu/HobbyCartes/HobbyCartes/Carte.vb b/contenu/HobbyCartes/HobbyCartes/Fiche.vb similarity index 78% rename from contenu/HobbyCartes/HobbyCartes/Carte.vb rename to contenu/HobbyCartes/HobbyCartes/Fiche.vb index 60a2909..19c6d8d 100644 --- a/contenu/HobbyCartes/HobbyCartes/Carte.vb +++ b/contenu/HobbyCartes/HobbyCartes/Fiche.vb @@ -1,13 +1,13 @@ Namespace Entitees - Public Class Carte + Public Class Fiche Public Enum Etat - Impeccable - Bonne - Moyenne - Passable - Pietre + impeccable + bonne + moyenne + passable + pietre End Enum Private annee As String diff --git a/contenu/HobbyCartes/HobbyCartes/HobbyCartes.vbproj b/contenu/HobbyCartes/HobbyCartes/HobbyCartes.vbproj index b553c86..60fa0b9 100644 --- a/contenu/HobbyCartes/HobbyCartes/HobbyCartes.vbproj +++ b/contenu/HobbyCartes/HobbyCartes/HobbyCartes.vbproj @@ -147,7 +147,7 @@ Administration.aspx ASPXCodebehind - + diff --git a/contenu/HobbyCartes/HobbyCartes/Inscription.aspx.vb b/contenu/HobbyCartes/HobbyCartes/Inscription.aspx.vb index 3efb641..27ea75e 100644 --- a/contenu/HobbyCartes/HobbyCartes/Inscription.aspx.vb +++ b/contenu/HobbyCartes/HobbyCartes/Inscription.aspx.vb @@ -11,7 +11,7 @@ Public Class Inscription m_connection = New MySqlConnection("Server=G264-11;Database=test;Uid=root;Pwd=toor;") m_connection.Open() - m_membre = New Entitees.Membre(m_connection) + m_membre = New Entitees.Membre(1, m_connection) End Sub