Sollicitatievraag bij QBuild Software

Abstract Class vs Interface What is React Blazor Server and is Blazor WebAssembly (Is web Assembly) What is C# reflection I described the take home in the answer below: Claude code can handle the project easily and was able to bypass the technical portion just know how to prompt it. DONT WSTE YOUR TIME! Tips: USE MODERN (DARK MODE) Understand the file which is just pretty much a tree and TADA.

Antwoord op sollicitatievraag

Anoniem

17 mrt 2026

# How to Implement a BOM Tree Explorer in .NET 8 WinForms with SQL ## Overview This document explains how to implement a **Bill of Materials (BOM) Tree Explorer** as a desktop application using: - **.NET 8** - **Windows Forms** - **sql** - **CsvHelper** The application should allow a user to: 1. Connect to a PostgreSQL database 2. Import `parts.csv` and `bom.csv` 3. Store parts and parent-child relationships 4. Build a hierarchical BOM tree 5. Click a node and view related details in a grid --- ## 1. What You Are Building A BOM is a hierarchy where: - a **parent** assembly contains one or more **components** - a component may itself be another assembly - leaf nodes are physical parts with no children Example: ```text ROOT_ASSEMBLY ├── SUB_ASSEMBLY_A │ ├── PART_1 │ └── PART_2 └── SUB_ASSEMBLY_B └── PART_3