16 lines
471 B
C#
16 lines
471 B
C#
|
|
namespace MediaTekDocuments.model
|
|
{
|
|
/// <summary>
|
|
/// Classe métier LivreDvd hérite de Document
|
|
/// </summary>
|
|
public abstract class LivreDvd : Document
|
|
{
|
|
protected LivreDvd(string id, string titre, string image, string idGenre, string genre,
|
|
string idPublic, string lePublic, string idRayon, string rayon)
|
|
: base(id, titre, image, idGenre, genre, idPublic, lePublic, idRayon, rayon)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|