Beispiel #1
0
 public async Task<IActionResult> Create(CreateFriendRequest friend)
 {
     var FriendDto = _mapper.Map<FriendDto>(friend);
     return _actionResultConverter.Convert(await _friendService.Create(FriendDto));
 }