Added front end for supplies.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-01-16 20:38:54 -07:00
parent 99d5372f25
commit 8af9868d2f
10 changed files with 445 additions and 18 deletions

View File

@@ -15,6 +15,20 @@
public string PartialFuelUp { get; set; }
public string IsFillToFull { get; set; }
public string MissedFuelUp { get; set; }
public string PartNumber { get; set; }
public string PartSupplier { get; set; }
public string PartQuantity { get; set; }
}
public class SupplyRecordExportModel
{
public string Date { get; set; }
public string PartNumber { get; set; }
public string PartSupplier { get; set; }
public string PartQuantity { get; set; }
public string Description { get; set; }
public string Cost { get; set; }
public string Notes { get; set; }
}
public class ServiceRecordExportModel