diff --git a/Sources/Model/Bateau.cs b/Sources/Model/Classes/Bateau.cs similarity index 85% rename from Sources/Model/Bateau.cs rename to Sources/Model/Classes/Bateau.cs index fb9eaf0..8803e65 100644 --- a/Sources/Model/Bateau.cs +++ b/Sources/Model/Classes/Bateau.cs @@ -6,7 +6,7 @@ using System.Text; using System.Threading.Tasks; using System.Xml.Linq; -namespace Model +namespace Model.Classes { [DataContract(Name = "bateau")] public class Bateau : ObjetOhara @@ -50,12 +50,12 @@ namespace Model Caracteristique = caracteristique; } - public Bateau(string nom, string nomRomanise, int premierChap, int premierEp, string description, string caracteristique, string image ) : this(nom,nomRomanise,premierChap,premierEp,description,caracteristique) + public Bateau(string nom, string nomRomanise, int premierChap, int premierEp, string description, string caracteristique, string image) : this(nom, nomRomanise, premierChap, premierEp, description, caracteristique) { Image = image; } - public Bateau(string nom, string nomRomanise, Equipage affiliation, int premierChap, int premierEp, string description, string caracteristique, string image) : this(nom,nomRomanise,premierChap,premierEp,description,caracteristique,image) + public Bateau(string nom, string nomRomanise, Equipage affiliation, int premierChap, int premierEp, string description, string caracteristique, string image) : this(nom, nomRomanise, premierChap, premierEp, description, caracteristique, image) { Affiliation = affiliation; } diff --git a/Sources/Model/Bestiaire.cs b/Sources/Model/Classes/Bestiaire.cs similarity index 82% rename from Sources/Model/Bestiaire.cs rename to Sources/Model/Classes/Bestiaire.cs index 704a7a8..1a65e85 100644 --- a/Sources/Model/Bestiaire.cs +++ b/Sources/Model/Classes/Bestiaire.cs @@ -7,7 +7,7 @@ using System.Text; using System.Threading.Tasks; using System.Xml.Linq; -namespace Model +namespace Model.Classes { [DataContract(Name = "bestiaire")] public class Bestiaire : ObjetOhara @@ -28,11 +28,11 @@ namespace Model Caracteristique = caracteristique; } - public Bestiaire(string nom, string origine, string description, string caracteristique,string image ) : this(nom,origine,description,caracteristique) + public Bestiaire(string nom, string origine, string description, string caracteristique, string image) : this(nom, origine, description, caracteristique) { - Image=image; + Image = image; } - + } } diff --git a/Sources/Model/Equipage.cs b/Sources/Model/Classes/Equipage.cs similarity index 86% rename from Sources/Model/Equipage.cs rename to Sources/Model/Classes/Equipage.cs index c3328f6..1579a88 100644 --- a/Sources/Model/Equipage.cs +++ b/Sources/Model/Classes/Equipage.cs @@ -6,7 +6,7 @@ using System.Text; using System.Threading.Tasks; using System.Xml.Linq; -namespace Model +namespace Model.Classes { [DataContract(Name = "equipage")] public class Equipage : ObjetOhara @@ -29,14 +29,14 @@ namespace Model public List Membre { get; set; } = new List(); [DataMember(Name = "allie")] public List Allie { get; set; } = new List(); - + public Equipage(string nom, string nomRomanise, string region, int premierChap, int premierEp, bool statut, string description) : base(nom) - { - + { + NomRomanise = nomRomanise; Region = region; - if(premierEp < 0) + if (premierEp < 0) { PremierEp = 0; } @@ -44,7 +44,7 @@ namespace Model { PremierEp = premierEp; } - if(premierChap < 0) + if (premierChap < 0) { premierChap = 0; } @@ -54,10 +54,10 @@ namespace Model } Statut = statut; Description = description; - + } - public Equipage(string nom, string nomRomanise, string region, int premierChap, int premierEp, bool statut, string description, string image) : this(nom, nomRomanise,region,premierChap,premierEp,statut,description) + public Equipage(string nom, string nomRomanise, string region, int premierChap, int premierEp, bool statut, string description, string image) : this(nom, nomRomanise, region, premierChap, premierEp, statut, description) { Image = image; diff --git a/Sources/Model/FruitDuDemon.cs b/Sources/Model/Classes/FruitDuDemon.cs similarity index 78% rename from Sources/Model/FruitDuDemon.cs rename to Sources/Model/Classes/FruitDuDemon.cs index 691d34d..42a6b44 100644 --- a/Sources/Model/FruitDuDemon.cs +++ b/Sources/Model/Classes/FruitDuDemon.cs @@ -6,12 +6,12 @@ using System.Text; using System.Threading.Tasks; using System.Xml.Linq; -namespace Model +namespace Model.Classes { [DataContract(Name = "fruitdudemon")] public class FruitDuDemon : ObjetOhara { - [DataMember (Name = "nomromanise")] + [DataMember(Name = "nomromanise")] public string NomRomanise { get; set; } [DataMember(Name = "type")] public string Type { get; set; } @@ -25,14 +25,14 @@ namespace Model public string Forces { get; set; } [DataMember(Name = "faiblesses")] public string Faiblesses { get; set; } - [DataMember(Name = "utilisateur",EmitDefaultValue = false)] - public List Utilisateur { get; set; }= new List(); - - + [DataMember(Name = "utilisateur", EmitDefaultValue = false)] + public List Utilisateur { get; set; } = new List(); + + public FruitDuDemon(string nom, string nomRomanise, string type, int premierChap, int premierEp, string description, string forces, string faiblesses) : base(nom) { - + NomRomanise = nomRomanise; Type = type; if (premierEp < 0) @@ -56,13 +56,13 @@ namespace Model Faiblesses = faiblesses; } - public FruitDuDemon(string nom, string nomRomanise, string type, int premierChap, int premierEp, string description, string forces, string faiblesses, string image) : this(nom, nomRomanise,type,premierChap,premierEp,description,forces,faiblesses) + public FruitDuDemon(string nom, string nomRomanise, string type, int premierChap, int premierEp, string description, string forces, string faiblesses, string image) : this(nom, nomRomanise, type, premierChap, premierEp, description, forces, faiblesses) { Image = image; } - public FruitDuDemon(string nom, string nomRomanise, string type, int premierChap, int premierEp, string description, string forces, string faiblesses,string image, List utilisateur) : this( nom, nomRomanise, type, premierChap, premierEp, description, forces, faiblesses, image) + public FruitDuDemon(string nom, string nomRomanise, string type, int premierChap, int premierEp, string description, string forces, string faiblesses, string image, List utilisateur) : this(nom, nomRomanise, type, premierChap, premierEp, description, forces, faiblesses, image) { Utilisateur = utilisateur; } diff --git a/Sources/Model/Ile.cs b/Sources/Model/Classes/Ile.cs similarity index 87% rename from Sources/Model/Ile.cs rename to Sources/Model/Classes/Ile.cs index e6ffee2..ea21d60 100644 --- a/Sources/Model/Ile.cs +++ b/Sources/Model/Classes/Ile.cs @@ -6,7 +6,7 @@ using System.Text; using System.Threading.Tasks; using System.Xml.Linq; -namespace Model +namespace Model.Classes { [DataContract(Name = "ile")] public class Ile : ObjetOhara @@ -23,12 +23,12 @@ namespace Model public string Description { get; set; } [DataMember(Name = "geographie")] public string Geographie { get; set; } - + public Ile(string nom, string nomRomanise, string region, int premierChap, int premierEp, string description, string geographie) : base(nom) { - + NomRomanise = nomRomanise; Region = region; if (premierEp < 0) @@ -49,13 +49,13 @@ namespace Model } Description = description; Geographie = geographie; - + } - public Ile(string nom, string nomRomanise, string region, int premierChap, int premierEp, string description, string geographie, string image) : this(nom,nomRomanise,region,premierChap,premierEp,description,geographie) + public Ile(string nom, string nomRomanise, string region, int premierChap, int premierEp, string description, string geographie, string image) : this(nom, nomRomanise, region, premierChap, premierEp, description, geographie) { - Image = image; + Image = image; } } } diff --git a/Sources/Model/ObjetOhara.cs b/Sources/Model/Classes/ObjetOhara.cs similarity index 62% rename from Sources/Model/ObjetOhara.cs rename to Sources/Model/Classes/ObjetOhara.cs index 31a4d3e..ecfbfdd 100644 --- a/Sources/Model/ObjetOhara.cs +++ b/Sources/Model/Classes/ObjetOhara.cs @@ -5,19 +5,19 @@ using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; -namespace Model +namespace Model.Classes { [DataContract(Name = "objetohara")] public class ObjetOhara { - [DataMember (Name = "nom")] + [DataMember(Name = "nom")] public string Nom { get; set; } - [DataMember (Name ="image")] - public string? Image { get; set;} + [DataMember(Name = "image")] + public string? Image { get; set; } public bool EstFavori { get; set; } - public ObjetOhara(string nom,string image = "baseimage.png", bool estFavori = false) + public ObjetOhara(string nom, string image = "baseimage.png", bool estFavori = false) { Nom = nom; Image = image; diff --git a/Sources/Model/Personnage.cs b/Sources/Model/Classes/Personnage.cs similarity index 73% rename from Sources/Model/Personnage.cs rename to Sources/Model/Classes/Personnage.cs index fc720a1..74c65a6 100644 --- a/Sources/Model/Personnage.cs +++ b/Sources/Model/Classes/Personnage.cs @@ -1,6 +1,6 @@ using System.Runtime.Serialization; -namespace Model +namespace Model.Classes { [DataContract(Name = "personnage")] public class Personnage : ObjetOhara @@ -19,17 +19,17 @@ namespace Model public string Biographie { get; set; } [DataMember(Name = "citation")] public string Citation { get; set; } - [DataMember(Name="equipage",EmitDefaultValue = false)] + [DataMember(Name = "equipage", EmitDefaultValue = false)] public Equipage? Equipage { get; set; } - [DataMember(Name="fruit",EmitDefaultValue = false)] + [DataMember(Name = "fruit", EmitDefaultValue = false)] public List Fruit { get; set; } = new List(); - + public Personnage(string nom, double prime, string epithete, int age, double taille, string origine, string biographie, string citation) : base(nom) { - if(prime < 0) + if (prime < 0) { Prime = 0; } @@ -39,27 +39,27 @@ namespace Model } Epithete = epithete; Age = age; - if(taille < 0) + if (taille < 0) { Taille = 0; } else { - Taille= taille; + Taille = taille; } - + Origine = origine; Biographie = biographie; - Citation = citation; - - + Citation = citation; + + } - public Personnage(string nom, double prime, string epithete, int age, double taille, string origine, string biographie, string citation, string image) : this(nom, prime,epithete,age,taille,origine,biographie,citation) + public Personnage(string nom, double prime, string epithete, int age, double taille, string origine, string biographie, string citation, string image) : this(nom, prime, epithete, age, taille, origine, biographie, citation) { Image = image; } - public Personnage(string nom, double prime, string epithete, int age, double taille, string origine, string biographie, string citation,string image ,Equipage equipage,List fruit) : this(nom,prime,epithete,age,taille,origine,biographie,citation,image) + public Personnage(string nom, double prime, string epithete, int age, double taille, string origine, string biographie, string citation, string image, Equipage equipage, List fruit) : this(nom, prime, epithete, age, taille, origine, biographie, citation, image) { Equipage = equipage; Fruit = fruit; diff --git a/Sources/Model/IDataManager.cs b/Sources/Model/Managers/IDataManager.cs similarity index 87% rename from Sources/Model/IDataManager.cs rename to Sources/Model/Managers/IDataManager.cs index 8cf01e9..ccb44e0 100644 --- a/Sources/Model/IDataManager.cs +++ b/Sources/Model/Managers/IDataManager.cs @@ -3,8 +3,9 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using Model.Classes; -namespace Model +namespace Model.Managers { public interface IDataManager { diff --git a/Sources/Model/Manager.cs b/Sources/Model/Managers/Manager.cs similarity index 79% rename from Sources/Model/Manager.cs rename to Sources/Model/Managers/Manager.cs index 7ffb8a8..bfb1965 100644 --- a/Sources/Model/Manager.cs +++ b/Sources/Model/Managers/Manager.cs @@ -1,12 +1,13 @@ -using Model.Stub; +using Model.Classes; +using Model.Stub; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -namespace Model - +namespace Model.Managers + { public class Manager { @@ -14,7 +15,8 @@ namespace Model - public Manager() { + public Manager() + { DataManager = new StubManager(); } @@ -46,9 +48,9 @@ namespace Model public List FiltrerFDD(string type) { List fdd = GetFruits(); - foreach(FruitDuDemon f in fdd.ToList()) + foreach (FruitDuDemon f in fdd.ToList()) { - if(f.Type != type) + if (f.Type != type) { fdd.Remove(f); } @@ -56,26 +58,28 @@ namespace Model return fdd; } - public List RechercheFDD(string text,List listeFDD) + public List RechercheFDD(string text, List listeFDD) { - if (text == "") { + if (text == "") + { return listeFDD; } - foreach(FruitDuDemon f in listeFDD.ToList()) + foreach (FruitDuDemon f in listeFDD.ToList()) { bool correspondance = false; int textPos = 0; - for (int i = 0; i < (f.Nom.Length); i++) { + for (int i = 0; i < f.Nom.Length; i++) + { if (string.Equals(text[textPos].ToString(), f.Nom[i].ToString(), StringComparison.OrdinalIgnoreCase)) { textPos++; } - if(textPos == text.Length) + if (textPos == text.Length) { correspondance = true; break; } - + } if (!correspondance) { @@ -94,7 +98,7 @@ namespace Model listeFavoris.AddRange(GetFruits()); listeFavoris.AddRange(GetBestiaires()); listeFavoris.AddRange(GetPersonnages()); - foreach(ObjetOhara obj in listeFavoris.ToList()) + foreach (ObjetOhara obj in listeFavoris.ToList()) { if (obj.EstFavori == true) { diff --git a/Sources/Model/Model.csproj b/Sources/Model/Model.csproj index 4658cbf..e9bb112 100644 --- a/Sources/Model/Model.csproj +++ b/Sources/Model/Model.csproj @@ -1,4 +1,4 @@ - + net7.0 diff --git a/Sources/Model/Serializer/XML_Serializer.cs b/Sources/Model/Serializer/XML_Serializer.cs index 8d5031a..bed8fb9 100644 --- a/Sources/Model/Serializer/XML_Serializer.cs +++ b/Sources/Model/Serializer/XML_Serializer.cs @@ -5,6 +5,8 @@ using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; using System.Xml; +using Model.Classes; +using Model.Managers; namespace Model.Serializer { diff --git a/Sources/Model/Stub/StubBateau.cs b/Sources/Model/Stub/StubBateau.cs index a5c1e4d..49f6757 100644 --- a/Sources/Model/Stub/StubBateau.cs +++ b/Sources/Model/Stub/StubBateau.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using Model.Classes; using static System.Net.Mime.MediaTypeNames; namespace Model.Stub diff --git a/Sources/Model/Stub/StubBestiaire.cs b/Sources/Model/Stub/StubBestiaire.cs index 5a0fbb6..a61aa4a 100644 --- a/Sources/Model/Stub/StubBestiaire.cs +++ b/Sources/Model/Stub/StubBestiaire.cs @@ -3,7 +3,8 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; - +using Model.Classes; + namespace Model.Stub { public class StubBestiaire diff --git a/Sources/Model/Stub/StubEquipage.cs b/Sources/Model/Stub/StubEquipage.cs index 17a5055..22471db 100644 --- a/Sources/Model/Stub/StubEquipage.cs +++ b/Sources/Model/Stub/StubEquipage.cs @@ -3,7 +3,8 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; - +using Model.Classes; + namespace Model.Stub { public class StubEquipage diff --git a/Sources/Model/Stub/StubFruitDuDemon.cs b/Sources/Model/Stub/StubFruitDuDemon.cs index d59f908..9862470 100644 --- a/Sources/Model/Stub/StubFruitDuDemon.cs +++ b/Sources/Model/Stub/StubFruitDuDemon.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using Model.Classes; namespace Model.Stub { diff --git a/Sources/Model/Stub/StubIle.cs b/Sources/Model/Stub/StubIle.cs index 2ed4367..a679b23 100644 --- a/Sources/Model/Stub/StubIle.cs +++ b/Sources/Model/Stub/StubIle.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using Model.Classes; using static System.Net.Mime.MediaTypeNames; namespace Model.Stub diff --git a/Sources/Model/Stub/StubManager.cs b/Sources/Model/Stub/StubManager.cs index bbb04b7..6a61469 100644 --- a/Sources/Model/Stub/StubManager.cs +++ b/Sources/Model/Stub/StubManager.cs @@ -3,6 +3,8 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using Model.Classes; +using Model.Managers; namespace Model.Stub { diff --git a/Sources/Model/Stub/StubPersonnage.cs b/Sources/Model/Stub/StubPersonnage.cs index 1d1b8eb..17c6dce 100644 --- a/Sources/Model/Stub/StubPersonnage.cs +++ b/Sources/Model/Stub/StubPersonnage.cs @@ -4,6 +4,7 @@ using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; +using Model.Classes; namespace Model.Stub { diff --git a/Sources/Ohara/App.xaml.cs b/Sources/Ohara/App.xaml.cs index 22d1d53..6044b77 100644 --- a/Sources/Ohara/App.xaml.cs +++ b/Sources/Ohara/App.xaml.cs @@ -1,4 +1,4 @@ -using Model; +using Model.Managers; using Plugin.Maui.Audio; namespace Ohara; diff --git a/Sources/Ohara/PageBateau.xaml.cs b/Sources/Ohara/PageBateau.xaml.cs index 3e4713a..c32b529 100644 --- a/Sources/Ohara/PageBateau.xaml.cs +++ b/Sources/Ohara/PageBateau.xaml.cs @@ -1,6 +1,7 @@ using Model.Stub; -using Model; using Plugin.Maui.Audio; +using Model.Classes; +using Model.Managers; namespace Ohara; diff --git a/Sources/Ohara/PageBestiaire.xaml.cs b/Sources/Ohara/PageBestiaire.xaml.cs index 38df1f3..469dfd1 100644 --- a/Sources/Ohara/PageBestiaire.xaml.cs +++ b/Sources/Ohara/PageBestiaire.xaml.cs @@ -1,7 +1,8 @@ using Model.Stub; -using Model; using Plugin.Maui.Audio; using System.Windows.Input; +using Model.Classes; +using Model.Managers; namespace Ohara; diff --git a/Sources/Ohara/PageEquipage.xaml.cs b/Sources/Ohara/PageEquipage.xaml.cs index 1228313..0159aec 100644 --- a/Sources/Ohara/PageEquipage.xaml.cs +++ b/Sources/Ohara/PageEquipage.xaml.cs @@ -1,5 +1,6 @@ namespace Ohara; -using Model; +using Model.Classes; +using Model.Managers; using Model.Stub; using Plugin.Maui.Audio; diff --git a/Sources/Ohara/PageFDD.xaml.cs b/Sources/Ohara/PageFDD.xaml.cs index 7928266..559c654 100644 --- a/Sources/Ohara/PageFDD.xaml.cs +++ b/Sources/Ohara/PageFDD.xaml.cs @@ -1,7 +1,8 @@ namespace Ohara; -using Model; +using Model.Classes; +using Model.Managers; using Model.Stub; using Plugin.Maui.Audio; using System.Windows.Input; diff --git a/Sources/Ohara/PageFavoris.xaml.cs b/Sources/Ohara/PageFavoris.xaml.cs index 7b17aa6..e2c8b4e 100644 --- a/Sources/Ohara/PageFavoris.xaml.cs +++ b/Sources/Ohara/PageFavoris.xaml.cs @@ -1,4 +1,5 @@ -using Model; +using Model.Classes; +using Model.Managers; using Plugin.Maui.Audio; namespace Ohara; diff --git a/Sources/Ohara/PageIle.xaml.cs b/Sources/Ohara/PageIle.xaml.cs index 6e46b38..e5810b9 100644 --- a/Sources/Ohara/PageIle.xaml.cs +++ b/Sources/Ohara/PageIle.xaml.cs @@ -1,6 +1,7 @@ using Model.Stub; -using Model; using Plugin.Maui.Audio; +using Model.Classes; +using Model.Managers; namespace Ohara; diff --git a/Sources/Ohara/PageInfoBateau.xaml.cs b/Sources/Ohara/PageInfoBateau.xaml.cs index 23f32ba..2e414fa 100644 --- a/Sources/Ohara/PageInfoBateau.xaml.cs +++ b/Sources/Ohara/PageInfoBateau.xaml.cs @@ -1,6 +1,6 @@ using Model.Stub; -using Model; using System.Windows.Input; +using Model.Classes; namespace Ohara; diff --git a/Sources/Ohara/PageInfoBestiaire.xaml.cs b/Sources/Ohara/PageInfoBestiaire.xaml.cs index 551ae23..58d1047 100644 --- a/Sources/Ohara/PageInfoBestiaire.xaml.cs +++ b/Sources/Ohara/PageInfoBestiaire.xaml.cs @@ -1,5 +1,5 @@ using Model.Stub; -using Model; +using Model.Classes; namespace Ohara; diff --git a/Sources/Ohara/PageInfoEquipage.xaml.cs b/Sources/Ohara/PageInfoEquipage.xaml.cs index caa8683..a16b0ed 100644 --- a/Sources/Ohara/PageInfoEquipage.xaml.cs +++ b/Sources/Ohara/PageInfoEquipage.xaml.cs @@ -1,5 +1,5 @@ using Model.Stub; -using Model; +using Model.Classes; namespace Ohara; diff --git a/Sources/Ohara/PageInfoFdd.xaml.cs b/Sources/Ohara/PageInfoFdd.xaml.cs index a5d7f93..5f19055 100644 --- a/Sources/Ohara/PageInfoFdd.xaml.cs +++ b/Sources/Ohara/PageInfoFdd.xaml.cs @@ -1,4 +1,4 @@ -using Model; +using Model.Classes; using Model.Stub; namespace Ohara; diff --git a/Sources/Ohara/PageInfoIle.xaml.cs b/Sources/Ohara/PageInfoIle.xaml.cs index 296530e..9025db3 100644 --- a/Sources/Ohara/PageInfoIle.xaml.cs +++ b/Sources/Ohara/PageInfoIle.xaml.cs @@ -1,5 +1,5 @@ using Model.Stub; -using Model; +using Model.Classes; namespace Ohara; diff --git a/Sources/Ohara/PageInfoPersonnage.xaml.cs b/Sources/Ohara/PageInfoPersonnage.xaml.cs index a882c0e..30d3402 100644 --- a/Sources/Ohara/PageInfoPersonnage.xaml.cs +++ b/Sources/Ohara/PageInfoPersonnage.xaml.cs @@ -1,7 +1,6 @@ using Model.Stub; -using Model; using Plugin.Maui.Audio; - +using Model.Classes; namespace Ohara; diff --git a/Sources/Ohara/PagePersonnage.xaml.cs b/Sources/Ohara/PagePersonnage.xaml.cs index 123cdd3..1b2ec35 100644 --- a/Sources/Ohara/PagePersonnage.xaml.cs +++ b/Sources/Ohara/PagePersonnage.xaml.cs @@ -1,6 +1,7 @@ namespace Ohara; -using Model; +using Model.Classes; +using Model.Managers; using Model.Stub; diff --git a/Sources/TestConsole/Program.cs b/Sources/TestConsole/Program.cs index fa8efac..45ee819 100644 --- a/Sources/TestConsole/Program.cs +++ b/Sources/TestConsole/Program.cs @@ -1,5 +1,6 @@ // See https://aka.ms/new-console-template for more information using Model; +using Model.Classes; using Model.Serializer; var manager = new Manager(); diff --git a/Sources/TestProject1/TestBateau.cs b/Sources/TestProject1/TestBateau.cs index 0e16bc7..2fdeb05 100644 --- a/Sources/TestProject1/TestBateau.cs +++ b/Sources/TestProject1/TestBateau.cs @@ -1,4 +1,4 @@ -using Model; +using Model.Classes; using System; using System.Collections.Generic; using System.Linq; diff --git a/Sources/TestProject1/TestBestiaire.cs b/Sources/TestProject1/TestBestiaire.cs index 91e2aaa..66ef665 100644 --- a/Sources/TestProject1/TestBestiaire.cs +++ b/Sources/TestProject1/TestBestiaire.cs @@ -1,4 +1,4 @@ -using Model; +using Model.Classes; using System; using System.Collections.Generic; using System.Linq; diff --git a/Sources/TestProject1/TestEquipage.cs b/Sources/TestProject1/TestEquipage.cs index 45e800c..c2755f2 100644 --- a/Sources/TestProject1/TestEquipage.cs +++ b/Sources/TestProject1/TestEquipage.cs @@ -1,4 +1,4 @@ -using Model; +using Model.Classes; using System; using System.Collections.Generic; using System.Linq; diff --git a/Sources/TestProject1/TestFDD.cs b/Sources/TestProject1/TestFDD.cs index e500008..556fc57 100644 --- a/Sources/TestProject1/TestFDD.cs +++ b/Sources/TestProject1/TestFDD.cs @@ -1,4 +1,4 @@ -using Model; +using Model.Classes; using System; using System.Collections.Generic; using System.Linq; diff --git a/Sources/TestProject1/TestIle.cs b/Sources/TestProject1/TestIle.cs index eb2211f..61b741b 100644 --- a/Sources/TestProject1/TestIle.cs +++ b/Sources/TestProject1/TestIle.cs @@ -1,4 +1,4 @@ -using Model; +using Model.Classes; using System; using System.Collections.Generic; using System.Linq; diff --git a/Sources/TestProject1/TestPersonnage.cs b/Sources/TestProject1/TestPersonnage.cs index cb0daa7..9764140 100644 --- a/Sources/TestProject1/TestPersonnage.cs +++ b/Sources/TestProject1/TestPersonnage.cs @@ -1,4 +1,4 @@ -using Model; +using Model.Classes; using System; using System.Collections.Generic; using System.Linq;