public static AgentDTO Charger(int idAgent) { using (AgentDAO agentDAO = new AgentDAO()) { AgentDTO agent = agentDAO.Charger(idAgent); if (agent == null) throw new ExceptionMetier("L'agent n'existe pas dans la base de données."); return agent; } }
internal AgendaDTO Mapper(IDataReader rd, AgendaDTO agenda) { agenda.Date = rd.GetDateTime("DATEENTREE"); agenda.Description = rd.GetString("DESCRIPTION"); agenda.Titre = rd.GetString("TITRE"); if (rd.GetNullableInt("PROSPECTPERSONNEID") != null) { ProspectDAO prospect = new ProspectDAO(); agenda.Prospect = prospect.Charger(rd.GetInt("PROSPECTPERSONNEID")); } if (rd.GetNullableInt("AGENTPERSONNEID") != null) { AgentDAO agent = new AgentDAO(); agenda.Agent = agent.Charger(rd.GetInt("AGENTPERSONNEID")); } if (rd.GetNullableInt("ANNONCEID") != null) { AnnonceDAO annonce = new AnnonceDAO(); agenda.Annonce = annonce.Charger(rd.GetInt("ANNONCEID")); } agenda.IdAgenda = rd.GetInt("ID"); return agenda; }