added ability to add gas records by Unit Costs and added notes field to gas records.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-01-19 09:52:54 -07:00
parent 3909223d2f
commit 76c9473704
10 changed files with 53 additions and 12 deletions

View File

@@ -118,7 +118,8 @@ namespace CarCareTracker.Controllers
FuelConsumed = x.Gallons.ToString(),
FuelEconomy = x.MilesPerGallon.ToString(),
IsFillToFull = x.IsFillToFull.ToString(),
MissedFuelUp = x.MissedFuelUp.ToString()
MissedFuelUp = x.MissedFuelUp.ToString(),
Notes = x.Notes
});
return Json(result);
}