MediaTekDocuments/MediaTekDocuments/model/Livre.cs

25 lines
774 B
C#

namespace MediaTekDocuments.model
{
/// <summary>
/// Classe métier Livre hérite de LivreDvd : contient des propriétés spécifiques aux livres
/// </summary>
public class Livre : LivreDvd
{
public string Isbn { get; }
public string Auteur { get; }
public string Collection { get; }
public Livre(string id, string titre, string image, string isbn, string auteur, string collection,
string idGenre, string genre, string idPublic, string lePublic, string idRayon, string rayon)
: base(id, titre, image, idGenre, genre, idPublic, lePublic, idRayon, rayon)
{
this.Isbn = isbn;
this.Auteur = auteur;
this.Collection = collection;
}
}
}