13 lines
382 B
C#
13 lines
382 B
C#
|
namespace ProjectLibrary.Repositories
|
|||
|
{
|
|||
|
using ProjectLibrary.Entites;
|
|||
|
using ProjectLibrary.Entities;
|
|||
|
|
|||
|
public interface IBookLibraryRepository
|
|||
|
{
|
|||
|
IEnumerable<BookLibrary> ReadBookLibraries(int? bookId = null, int? libraryId = null);
|
|||
|
void CreateBookLibrary(BookLibrary bookLibrary);
|
|||
|
void DeleteBookLibrary(int bookId, int libraryId);
|
|||
|
}
|
|||
|
}
|