コード例 #1
0
        public List <PresentationViewDto> GetPresentations(int userId)
        {
            var presentations = _presentationRepository.GetPresentations(userId);

            return(_mapper.Map <List <PresentationViewDto> >(presentations));
        }