From f094d30010c4e53c0fdf62739dae3cef3d4f7b41 Mon Sep 17 00:00:00 2001 From: Enes Doner <95379442+EnesDONER@users.noreply.github.com> Date: Mon, 20 May 2024 17:20:57 +0300 Subject: [PATCH] Update docs/en/Community-Articles/2024-05-09-what-is-object-to-object-mapping/post.md Co-authored-by: Engincan VESKE --- .../2024-05-09-what-is-object-to-object-mapping/post.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Community-Articles/2024-05-09-what-is-object-to-object-mapping/post.md b/docs/en/Community-Articles/2024-05-09-what-is-object-to-object-mapping/post.md index 1c6586cf12a..84c2da5f6e2 100644 --- a/docs/en/Community-Articles/2024-05-09-what-is-object-to-object-mapping/post.md +++ b/docs/en/Community-Articles/2024-05-09-what-is-object-to-object-mapping/post.md @@ -70,7 +70,7 @@ Let's create the `CustomerGetDto` class in the `*.Application.Contracts` project } ```` -You can use this code to list customers: +After creating our entity and output DTO classes, now in the application service implementation, we can return the `CustomerGetDto` class, as a result of listing the customers. For that reason, we can write a code as follows: ````csharp public virtual async Task> GetListAsync(GetCustomersInput input)