38 lines
862 B
Java
38 lines
862 B
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 com.mycompany.bibliotheque.Metier;
|
|
|
|
/**
|
|
*
|
|
* @author dthev
|
|
*/
|
|
|
|
import com.mycompany.bibliotheque.Metier.Livre;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class Utilisateur {
|
|
private String nom;
|
|
private List<Livre> emprunts;
|
|
|
|
public Utilisateur(String nom) {
|
|
this.nom = nom;
|
|
this.emprunts = new ArrayList<>();
|
|
}
|
|
|
|
public String getNom() {
|
|
return nom;
|
|
}
|
|
|
|
public List<Livre> getEmprunts() {
|
|
return emprunts;
|
|
}
|
|
|
|
// TODO: ajouter un emprunt si l'utilisateur a moins de 3 livres
|
|
public boolean emprunterLivre(Livre livre) {
|
|
return false; // à compléter
|
|
}
|
|
}
|