0
I am developing an application in C# and WPF, with several registrations as Customers, Suppliers, Products, etc. I am using the DDD concept and I have a question about how to implement a data export module. I will need to export data and the files will be in xml, csv and txt format.
On which layer do I implement this module? Does anyone have an example?
I would put the reading and writing of the file in the Infra.Data and put the data assembly rule in the Domain.
– joaoeduardorf
In this case, I would create Interfaces similar to those of CRUD with Entityframework?
– Master JR
Could be in this case.
– joaoeduardorf
Thanks for the tip joaoeduardorf!!
– Master JR