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

12 lines
256 B
C#

using System.Collections.Generic;
using BuecherwurmAPI.Models;
namespace BuecherwurmAPI.Models
{
public interface IBookRepo
{
IEnumerable<Book> GetAllBooks();
Book GetBookById(int id);
void BuchEntfernen(Book book);
}
}