BuecherwurmAPI/Models/IBookRepo.cs

12 lines
256 B
C#
Raw Normal View History

2020-05-28 11:47:02 +00:00
using System.Collections.Generic;
using BuecherwurmAPI.Models;
2020-06-02 09:16:45 +00:00
namespace BuecherwurmAPI.Models
2020-05-28 11:47:02 +00:00
{
public interface IBookRepo
{
IEnumerable<Book> GetAllBooks();
Book GetBookById(int id);
void BuchEntfernen(Book book);
}
}