Exemple #1
0
        public Task <IReadOnlyList <Equipement> > GetEquipementByNomAsync(string nom)
        {
            EquipementByNom spec = new EquipementByNom(nom);

            return(_equipementRepository.ListAsync(spec));
        }
Exemple #2
0
        public IReadOnlyList <Equipement> GetEquipementByNom(string nom)
        {
            EquipementByNom spec = new EquipementByNom(nom);

            return(_equipementRepository.List(spec));
        }