BuecherwurmAPI/Data/IBookRepo.cs

12 lines
254 B
C#
Raw Normal View History

2020-05-27 12:22:54 +00:00
using System.Collections.Generic;
using BuecherwurmAPI.Models;
namespace BuecherwurmAPI.Data
{
public interface IBookRepo
{
IEnumerable<Book> GetAllBooks();
Book GetBookById(int id);
void BuchEntfernen(Book book);
2020-05-27 12:22:54 +00:00
}
}