Esempio n. 1
0
        public async Task <IEnumerable <EmailApiResponse> > GetEmails(Guid chapterId)
        {
            IReadOnlyCollection <Email> emails = await _emailAdminService.GetEmails(GetMemberId(), chapterId);

            return(emails.Select(_mapper.Map <EmailApiResponse>));
        }