MediaTekDocuments/MediaTekDocuments/model/Abonnement.cs

22 lines
No EOL
670 B
C#

using System;
namespace MediaTekDocuments.model
{
public class Abonnement
{
public string Id { get; set; }
public DateTime DateCommande { get; set; }
public double Montant { get; set; }
public DateTime DateFinAbonnement { get; set; }
public string IdRevue { get; set; }
public Abonnement(string id, DateTime dateCommande, double montant, DateTime dateFinAbonnement, string idRevue)
{
this.Id = id;
this.DateCommande = dateCommande;
this.Montant = montant;
this.DateFinAbonnement = dateFinAbonnement;
this.IdRevue = idRevue;
}
}
}