public List <JourDTO> GetJoursByVoyageId(int VoyageId)
 {
     return(Jour.toDTOList(db.Jours.Where(x => x.VoyageId == VoyageId).ToList()));
 }