Ejemplo n.º 1
0
        public List <Collaborateur> GetAll()
        {
            List <Collaborateur> result = new List <Collaborateur>();

            result = _CollaborateurRepository.GetAll();
            return(result);
        }
Ejemplo n.º 2
0
        public List <Collaborateur> GetAll()
        {
            List <Collaborateur> result = new List <Collaborateur>();

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