コード例 #1
0
ファイル: Livre.cs プロジェクト: AlfaBrisingr/BiblioNetBO
 public Livre(int numLivre ,String CodeISBN, String NonLivre, Auteur UnAuteur, int QuantiteStock , String DateSortie , String Tarif, String Resume, String Langue ,String couverture , Edition uneEdition, Genre UnGenre)
 {
     this.numLivre = numLivre;
     this.CodeISBN = CodeISBN;
     this.NonLivre = NonLivre;
     this.UnAuteur = UnAuteur;
     this.QuantiteStock = QuantiteStock;
     this.DateSortie = DateSortie;
     this.Tarif = Tarif;
     this.Resume = Resume;
     this.Langue = Langue;
     this.couverture = couverture;
     this.uneEdition = uneEdition;
        this.UnGenre = UnGenre;
 }
コード例 #2
0
 public Livre(int numLivre, String CodeISBN, String NonLivre, Auteur UnAuteur, int QuantiteStock, String DateSortie, String Tarif, String Resume, String Langue, String couverture, Edition uneEdition, Genre UnGenre)
 {
     this.numLivre      = numLivre;
     this.CodeISBN      = CodeISBN;
     this.NonLivre      = NonLivre;
     this.UnAuteur      = UnAuteur;
     this.QuantiteStock = QuantiteStock;
     this.DateSortie    = DateSortie;
     this.Tarif         = Tarif;
     this.Resume        = Resume;
     this.Langue        = Langue;
     this.couverture    = couverture;
     this.uneEdition    = uneEdition;
     this.UnGenre       = UnGenre;
 }