Beispiel #1
0
        public async Task <Dto.Profile> GetAsync(int profileId)
        {
            var profile = await _profileDataService.GetAsync(profileId);

            return(_mapper.Map <Dto.Profile>(profile));
        }