public async Task <JsonResponse> ReadPost(string id) { var post = await _postAppService.ReadPost(Guid.Parse(id)); return(new JsonResponse(post, 200)); }