Пример #1
0
        public List <FamilleTier> GetAll()
        {
            List <FamilleTier> result = new List <FamilleTier>();

            result = _FamilleTierRepository.GetAll();
            return(result);
        }
Пример #2
0
        public List <FamilleTier> GetAll()
        {
            List <FamilleTier> result = new List <FamilleTier>();

            try
            {
                result = _FamilleTierRepository.GetAll();
                return(result);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }