Asp.net – How to use DTOs from application layer in domain layer repository interface (repository pattern)?
I am learning ASP.NET clean architecture structure. I have an application layer with a query GetAllRestaurants which has to return paginated restaurant objects. I am using repository pattern, with the structure as shown in this screenshot: Now, I want to…