Пример #1
0
 public Courrier(string reference, string type, string nature, DateTime date_creation, string objet, string etat, AgentUA agentua, bool reponse, Dossier dossier)
 {
     this.reference     = reference;
     this.typecr        = type;
     this.nature        = nature;
     this.date_creation = date_creation;
     this.objet         = objet;
     this.etat          = etat;
     this.agentua       = agentua;
     this.reponse       = reponse;
     this.dossier       = dossier;
 }
Пример #2
0
 public Facture(string reference, string type, string nature, DateTime date_creation, string objet, string etat, AgentUA agentua, bool reponse, Dossier dossier, DateTime date_courrier, DateTime date_arrivee, string typec, Contact expediteur, string device, float montant) : base(reference, type, nature, date_creation, objet, etat, agentua, reponse, dossier, date_courrier, date_arrivee, typec, expediteur)
 {
     this.device  = device;
     this.montant = montant;
 }
Пример #3
0
 public CourrierDepart(string reference, string type, string nature, DateTime date_creation, string objet, string etat, AgentUA agentua, bool reponse, Dossier dossier, Contact destinataire)
     : base(reference, type, nature, date_creation, objet, etat, agentua, reponse, dossier)
 {
     this.destinataire = destinataire;
 }
Пример #4
0
 public CourrierArriveInterne(string reference, string type, string nature, DateTime date_creation, string objet, string etat, AgentUA agentua, bool reponse, Dossier dossier, DateTime date_courrier, DateTime date_arrivee, string typec, Contact expediteur) : base(reference, type, nature, date_creation, objet, etat, agentua, reponse, dossier)
 {
     this.date_courrier = date_courrier;
     this.date_arrivee  = date_arrivee;
     this.type          = type;
     this.expediteur    = expediteur;
 }
Пример #5
0
 public void setDossier(Dossier dossier)
 {
     this.dossier = dossier;
 }