Parts screen functionality mostly complete; Just need validation
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user