11 lines
215 B
C#
11 lines
215 B
C#
|
using System.Collections.Generic;
|
||
|
using BuecherwurmAPI.Models;
|
||
|
|
||
|
namespace BuecherwurmAPI.Data
|
||
|
{
|
||
|
public interface ILendRepo
|
||
|
{
|
||
|
IEnumerable<Lend> GetAllLends();
|
||
|
Lend GetLendById(int id);
|
||
|
}
|
||
|
}
|