mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
11 lines
238 B
C#
11 lines
238 B
C#
using CarCareTracker.Models;
|
|
|
|
namespace CarCareTracker.External.Interfaces
|
|
{
|
|
public interface INoteDataAccess
|
|
{
|
|
public Note GetNoteByVehicleId(int vehicleId);
|
|
public bool SaveNoteToVehicleId(Note note);
|
|
}
|
|
}
|