Ejemplo n.º 1
0
        public async Task <IActionResult> GetAllMentors()
        {
            var mentors = await _repo.GetAllMentors();

            var mentorsToReturn = _mapper.Map <IEnumerable <MentorForListDTO> >(mentors);

            return(Ok(mentorsToReturn));
        }
Ejemplo n.º 2
0
 public List <Mentor> Get()
 {
     return(_repository.GetAllMentors());
 }