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; }
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); }
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; }
public MV_Pilot(M_Pilot pilot) { this.pilot = pilot; gestion = new M_BDD(); }