BuecherwurmAPI/Models/ILendRepo.cs
2020-06-02 11:16:45 +02:00

11 lines
217 B
C#

using System.Collections.Generic;
using BuecherwurmAPI.Models;
namespace BuecherwurmAPI.Models
{
public interface ILendRepo
{
IEnumerable<Lend> GetAllLends();
Lend GetLendById(int id);
}
}