12 lines
254 B
C#
12 lines
254 B
C#
|
using System.Collections.Generic;
|
||
|
using BuecherwurmAPI.Models;
|
||
|
|
||
|
namespace BuecherwurmAPI.Data
|
||
|
{
|
||
|
public interface IBookRepo
|
||
|
{
|
||
|
IEnumerable<Book> GetAllBooks();
|
||
|
Book GetBookById(int id);
|
||
|
void BuchEntfernen(Book book);
|
||
|
}
|
||
|
}
|