Ejemplo n.º 1
0
        public IEnumerable <LectureDTO> GetAll()
        {
            var letureAll      = _lectureRepository.GetAll();
            var lectureAllDtos = _mapper.Map <IEnumerable <LectureDTO> >(letureAll);

            return(lectureAllDtos);
        }