Ejemplo n.º 1
0
 public MV_Add(string name, string plane, string length, string width)
 {
     this.gestion = new M_BDD(); //lien avec le modèle qulie la base de donnée
     this.name    = name;
     this.plane   = plane;
     this.length  = length;
     this.width   = width;
 }
Ejemplo n.º 2
0
        public MV_Recherche(string nom)
        {//permet la recherche d'un pilot associé à un nom donné en parametre et retourne un élément Pilot grace à la methode verif_name
            this.nom = nom;

            gestion = new M_BDD();

            M_Pilot pilote = gestion.Verif_name(nom);//recherche un pilot dans la bdd associé à un nom

            this.pilot = new MV_Pilot(pilote);
        }
Ejemplo n.º 3
0
 public MV_Add(string[,] tableau, string id_hangar)
 {
     this.gestion   = new M_BDD(); //lien avec le modèle qulie la base de donnée
     this.tableau   = tableau;
     this.id_hangar = id_hangar;
 }
Ejemplo n.º 4
0
 public MV_Pilot(M_Pilot pilot)
 {
     this.pilot = pilot;
     gestion    = new M_BDD();
 }