Add functionality to order insufficient supplies for plan templates.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-11-02 19:13:02 -06:00
parent feaf631b47
commit 0b9ca77281
8 changed files with 115 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
namespace CarCareTracker.Models
{
public class SupplyAvailability
{
public bool Missing { get; set; }
public string Description { get; set; } = string.Empty;
public decimal Required { get; set; }
public decimal InStock { get; set; }
public bool Insufficient { get { return Required > InStock; } }
}
}