mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
14 lines
470 B
C#
14 lines
470 B
C#
using CarCareTracker.Models;
|
|
|
|
namespace CarCareTracker.External.Interfaces
|
|
{
|
|
public interface IPlanRecordDataAccess
|
|
{
|
|
public List<PlanRecord> GetPlanRecordsByVehicleId(int vehicleId);
|
|
public PlanRecord GetPlanRecordById(int planRecordId);
|
|
public bool DeletePlanRecordById(int planRecordId);
|
|
public bool SavePlanRecordToVehicle(PlanRecord planRecord);
|
|
public bool DeleteAllPlanRecordsByVehicleId(int vehicleId);
|
|
}
|
|
}
|