Files
motovaultpro/External/Interfaces/IPlanRecordDataAccess.cs
Eric Gullickson f7eca4bad5 first commit
2025-07-15 20:34:05 -05:00

14 lines
466 B
C#

using MotoVaultPro.Models;
namespace MotoVaultPro.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);
}
}