public IEnumerable <LicencePivot> Licences(string identifged) { IEnumerable <GES_Licence> licences = licenceRepository.GetItemsByModelLibelle(identifged).ToList(); IEnumerable <LicencePivot> licencesPivots = Mapper.Map <IEnumerable <GES_Licence>, IEnumerable <LicencePivot> >(licences); return(licencesPivots); }