This commit is contained in:
2025-04-29 21:11:49 -05:00
commit a7c02cf29f
12 changed files with 348 additions and 0 deletions

38
C968Project/Inventory.cs Normal file
View File

@@ -0,0 +1,38 @@
using System.ComponentModel;
namespace C968Project;
public class Inventory
{
public BindingList<Product> Products { get; set; }
public BindingList<Part> Parts { get; set; }
public void AddProduct(Product product){}
public bool RemoveProduct(int productIndex)
{
return false;
}
public Product LookupProduct(int partIndex)
{
return null;
}
public void UpdateProduct(int index, Product newProduct){}
public void AddPart(Part part){}
public bool DeletePart(Part part)
{
return false;
}
public Part LookupPart(int partIndex)
{
return null;
}
public void UpdatePart(int index, Part newPart){}
}