public async Task <IEnumerable <RecipientDto> > GetAll() { var allRecipients = await _recipientRepository.ListAsync(); return(_mapper.Map <IEnumerable <RecipientDto> >(allRecipients)); }