public async Task <ServerResponse> CancelFriendAsync([FromBody] int personId) { return(AOResultToServerResponse(await _friendService.CancelFriendAsync(AccountId, personId))); }
public async Task <ServerResponse <bool> > CancelFriendAsync([FromBody] long personId) { return(await _friendService.CancelFriendAsync(AccountId, personId)); }