mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
14 lines
518 B
C#
14 lines
518 B
C#
using CarCareTracker.Models;
|
|
|
|
namespace CarCareTracker.External.Interfaces
|
|
{
|
|
public interface IReminderRecordDataAccess
|
|
{
|
|
public List<ReminderRecord> GetReminderRecordsByVehicleId(int vehicleId);
|
|
public ReminderRecord GetReminderRecordById(int reminderRecordId);
|
|
public bool DeleteReminderRecordById(int reminderRecordId);
|
|
public bool SaveReminderRecordToVehicle(ReminderRecord reminderRecord);
|
|
public bool DeleteAllReminderRecordsByVehicleId(int vehicleId);
|
|
}
|
|
}
|