Beispiel #1
0
        public List <Famille> GetAll()
        {
            List <Famille> result = new List <Famille>();

            try
            {
                result = _FamilleRepository.GetAll();
                return(result);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
 public IEnumerable <Famille> GetAll()
 {
     return(_familleRepository.GetAll());
 }