Parts screen functionality mostly complete; Just need validation

This commit is contained in:
2025-05-15 00:22:04 -05:00
parent 179e8e13f9
commit 70400de418
7 changed files with 289 additions and 22 deletions

View File

@@ -5,8 +5,8 @@ namespace C968Project;
public class Inventory
{
public BindingList<Product> Products { get; set; }
public BindingList<Part> Parts { get; set; }
public BindingList<Product> Products { get; set; } = new();
public BindingList<Part> Parts { get; set; } = new();
public void AddProduct(Product product)
{