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; }
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; }
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; }
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; }
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; }
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; }
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; }
public void setAgent(AgentUA agent) { this.agent = agent; }
public void setAgent_Cible(AgentUA agent_cible) { this.agent_cible = agent_cible; }
public void setAgent_Courant(AgentUA agent_courant) { this.agent_courant = agent_courant; }
public void setAgentUA(AgentUA agentua) { this.agentua = agentua; }