public Emprunt(int ID, int ID_Livre, int ID_Abonne, String Date) { this.ID = ID; this.ID_Livre = ID_Livre; this.ID_Abonne = ID_Abonne; this.Date = Date; this.nom = Bibliotheque.getAbonneParID(ID_Abonne).getNomComplet(); this.nomInverse = Bibliotheque.getAbonneParID(ID_Abonne).getNomCompletInverse(); this.titre = Bibliotheque.getLivreParID(ID_Livre).getTitre(); }
public Emprunt(int ID, int ID_Livre, int ID_Abonne) { this.ID = ID; this.ID_Livre = ID_Livre; this.ID_Abonne = ID_Abonne; Date now = new Date(); this.Date = new SimpleDateFormat("yyyy-MM-dd").format(now); this.nom = Bibliotheque.getAbonneParID(ID_Abonne).getNomComplet(); this.nomInverse = Bibliotheque.getAbonneParID(ID_Abonne).getNomCompletInverse(); this.titre = Bibliotheque.getLivreParID(ID_Livre).getTitre(); }