added ability to add custom month interval to reminder.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-10 09:33:30 -07:00
parent cd9a673e62
commit 09fbc37472
7 changed files with 76 additions and 19 deletions

View File

@@ -1352,7 +1352,8 @@ namespace CarCareTracker.Controllers
IsRecurring = result.IsRecurring,
ReminderMileageInterval = result.ReminderMileageInterval,
ReminderMonthInterval = result.ReminderMonthInterval,
CustomMileageInterval = result.CustomMileageInterval
CustomMileageInterval = result.CustomMileageInterval,
CustomMonthInterval = result.CustomMonthInterval
};
return PartialView("_ReminderRecordModal", convertedResult);
}