44 lines
1.0 KiB
Java
44 lines
1.0 KiB
Java
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
|
*/
|
|
package métiers;
|
|
|
|
import métiers.Commande;
|
|
|
|
/**
|
|
*
|
|
* @author famille Thevenot
|
|
*/
|
|
public class Entreprise {
|
|
private String raisonSociale;
|
|
|
|
public Entreprise(String raisonSociale) {
|
|
this.raisonSociale = raisonSociale;
|
|
}
|
|
|
|
public String getRaisonSociale() {
|
|
return raisonSociale;
|
|
}
|
|
|
|
public void setRaisonSociale(String raisonSociale) {
|
|
this.raisonSociale = raisonSociale;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "Entreprise{" + "raisonSociale=" + raisonSociale + '}';
|
|
}
|
|
|
|
|
|
public void ajouterCommande(Commande uneCommande){
|
|
}
|
|
public void supprimerCommande(Commande uneCommande){
|
|
}
|
|
|
|
public Commande rechercherCommande(int noCom){
|
|
Commande laCommande=null;
|
|
return laCommande;
|
|
}
|
|
}
|