|
|
|
@ -6,14 +6,21 @@ using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MangaMap.Model
|
|
|
|
|
{
|
|
|
|
|
public class Utilisateur
|
|
|
|
|
public class Utilisateur : Personne
|
|
|
|
|
{
|
|
|
|
|
public string nom { get; private set; }
|
|
|
|
|
public string prenom { get; private set; }
|
|
|
|
|
public int age { get; private set; }
|
|
|
|
|
public List<Oeuvre> ListeOeuvreEnVisionnage { get; private set; }
|
|
|
|
|
public List<Oeuvre> ListeOeuvreDejaVu { get; private set; }
|
|
|
|
|
public List<Oeuvre> ListeOeuvrePourPlusTard { get; private set; }
|
|
|
|
|
public List<Oeuvre> ListeOeuvreFavorites { get; private set; }
|
|
|
|
|
|
|
|
|
|
public Utilisateur(string nom, string prenom, int age)
|
|
|
|
|
{
|
|
|
|
|
this.Email = "rr";
|
|
|
|
|
this.Pseudo = "55";
|
|
|
|
|
this.MotDePasse = "45";
|
|
|
|
|
this.nom = nom;
|
|
|
|
|
this.prenom = prenom;
|
|
|
|
|
this.age = age;
|
|
|
|
|