DDD (Domain Driven Design).Domain, Infrastructure and Application layers.Domain layer I have some Domain Services, Infrastructure as everyone knows I implemented the RepositoriesApplication layer I have Application Services, but here the confusing point for me, beacuse I let the Application Services to extend the Domain Services ( by the inheritance ).Application layer I have imlemented the CQRS ( Commands and Queries )Github Copilot and it told me that the Application layer should not directly depend on Repositories instead it should depend on Domain Services and the Domain Services should depend on Repositories.