14 lines
529 B
C#
14 lines
529 B
C#
using MotoVaultPro.Models;
|
|
|
|
namespace MotoVaultPro.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);
|
|
}
|
|
}
|