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