Add chapter 9 sample code

This commit is contained in:
Alvin Ashcraft
2023-08-05 12:33:28 -04:00
parent 4c9e111e61
commit adcb6d5498
17 changed files with 330 additions and 0 deletions
@@ -0,0 +1,12 @@
namespace HardwareSupplies
{
public class HardwareItem
{
public long id { get; set; }
public string name { get; set; }
public string category { get; set; }
public int quantity { get; set; }
public decimal cost { get; set; }
public decimal price { get; set; }
}
}