- New project for every section (Webapp, Use Cases, Core business, etc)
- Make sure you’re in the default solution/project. Ref can be fixed by adding existing solution/project to root solution/project at any time
- Manually add dependencies between sections

ctrl + . while focused on Inventory then select first option to import namespace (using ITMS.CoreBusiness)
- Use cases drive function, make one for every action (view x by name, etc)
- ctor to build constructor and ctrl + . to initialize variable (basically ctrl + . for a bunch of stuff throughout)
- Use cases use repositories (plugin interfaces)

- prop to build properties of base classes
- Initialize properties with empty string to avoid null values/ref exceptions
- Make sure proper Keywords & Identifiers
Keywords & Identifiers
- Register interface and its implementation in service collection in the blazor application

Dependency Injection
- Take the injections and put them into _imports to carry over all pages


