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