mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
14 lines
533 B
C#
14 lines
533 B
C#
using CarCareTracker.Models;
|
|
|
|
namespace CarCareTracker.External.Interfaces
|
|
{
|
|
public interface IPlanRecordTemplateDataAccess
|
|
{
|
|
public List<PlanRecordInput> GetPlanRecordTemplatesByVehicleId(int vehicleId);
|
|
public PlanRecordInput GetPlanRecordTemplateById(int planRecordId);
|
|
public bool DeletePlanRecordTemplateById(int planRecordId);
|
|
public bool SavePlanRecordTemplateToVehicle(PlanRecordInput planRecord);
|
|
public bool DeleteAllPlanRecordTemplatesByVehicleId(int vehicleId);
|
|
}
|
|
}
|