IRI
Build a solution in C# that for each product from the master list, returns a distinct list of code types with their latest codes.
- Console project to display the final output
- Read the Product, Retailer product details text files.(the files are present in data folder)
- Parse the files to DTO
- Used Nuget TinyCsvParser to parse the files, used mapping to convert the class properties.
- Linq queries to join and filter the data.
- display the output on console
- Basic unit test case.