コード例 #1
0
 public Reaffectation(AgentUA agent_courant, AgentUA agent_cible, DateTime date_reaf, string motif)
 {
     this.date_reaf     = date_reaf;
     this.motif         = motif;
     this.agent_courant = agent_courant;
     this.agent_cible   = agent_cible;
 }
コード例 #2
0
ファイル: Dossier.cs プロジェクト: sakho3600/Gestion-Courrier
 public Dossier(string reference, string intitule, string objet, DateTime date_creation, DateTime date_cloture, AgentUA agent)
 {
     this.reference     = reference;
     this.intitule      = intitule;
     this.objet         = objet;
     this.date_creation = date_creation;
     this.date_cloture  = date_cloture;
     this.agent         = agent;
 }
コード例 #3
0
 public Reaffectation(int id, DateTime date_reaf, string motif, CourrierArriveInterne courrier, AgentUA agent_courant, AgentUA agent_cible)
 {
     this.id            = id;
     this.date_reaf     = date_reaf;
     this.motif         = motif;
     this.courrier      = courrier;
     this.agent_courant = agent_courant;
     this.agent_cible   = agent_cible;
 }
コード例 #4
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;
 }
コード例 #5
0
ファイル: Facture.cs プロジェクト: sakho3600/Gestion-Courrier
 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;
 }
コード例 #6
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;
 }
コード例 #7
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;
 }
コード例 #8
0
ファイル: Dossier.cs プロジェクト: sakho3600/Gestion-Courrier
 public void setAgent(AgentUA agent)
 {
     this.agent = agent;
 }
コード例 #9
0
 public void setAgent_Cible(AgentUA agent_cible)
 {
     this.agent_cible = agent_cible;
 }
コード例 #10
0
 public void setAgent_Courant(AgentUA agent_courant)
 {
     this.agent_courant = agent_courant;
 }
コード例 #11
0
 public void setAgentUA(AgentUA agentua)
 {
     this.agentua = agentua;
 }