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 1c6586cf12..84c2da5f6e 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)